public static GraphNode operator /(string name, SuperList others) { var state = new ConstantNode(name); foreach (var s in others) { state.Slash(s); } return(state); }