Tanoda
|
A simple wrapper around HashSet to provide readonly access. Useful when you want to return a HashSet to someone but you want to make sure they don't muck it up! More...
Public Member Functions | |
ReadonlyHashSet (HashSet< T > set) | |
HashSet< T >.Enumerator | GetEnumerator () |
bool | Contains (T obj) |
Query< T > | Query () |
Static Public Member Functions | |
static implicit | operator ReadonlyHashSet< T > (HashSet< T > set) |
static implicit | operator ReadonlyHashSet< T > (SerializableHashSet< T > set) |
Properties | |
int | Count [get] |
A simple wrapper around HashSet to provide readonly access. Useful when you want to return a HashSet to someone but you want to make sure they don't muck it up!
Definition at line 19 of file ReadonlyHashSet.cs.
Leap.Unity.ReadonlyHashSet< T >.ReadonlyHashSet | ( | HashSet< T > | set | ) |
Definition at line 22 of file ReadonlyHashSet.cs.
bool Leap.Unity.ReadonlyHashSet< T >.Contains | ( | T | obj | ) |
Definition at line 36 of file ReadonlyHashSet.cs.
HashSet< T >.Enumerator Leap.Unity.ReadonlyHashSet< T >.GetEnumerator | ( | ) |
Definition at line 32 of file ReadonlyHashSet.cs.
|
static |
Definition at line 44 of file ReadonlyHashSet.cs.
|
static |
Definition at line 48 of file ReadonlyHashSet.cs.
Query< T > Leap.Unity.ReadonlyHashSet< T >.Query | ( | ) |
Definition at line 40 of file ReadonlyHashSet.cs.
|
get |
Definition at line 26 of file ReadonlyHashSet.cs.