public static SearchSet operator +(SearchSet a, string s) { SearchSet r = new SearchSet(a); r.b[PointerType.Of(s).Ident] = true; return(r); }
public bool this[string s] { get { return(b[PointerType.Of(s).Ident]); } }
//public static SortedList searchtypes = new SortedList(); // SearchType -> SearchType public SearchType(bool r, string t) : this(r, PointerType.Of(t)) { }
internal Pointer(string s) { ptp = PointerType.Of(s); }