9using System.Collections.Generic;
20 private readonly HashSet<T> _set;
33 return _set.GetEnumerator();
37 return _set.Contains(obj);
49 return (HashSet<T>)
set;
A Query object is a type of immutable ordered collection of elements that can be used to perform usef...
A simple wrapper around HashSet to provide readonly access. Useful when you want to return a HashSet ...
ReadonlyHashSet(HashSet< T > set)
HashSet< T >.Enumerator GetEnumerator()