A class that allows binary operations based on a case-insensitive property on the object
More...
|
override IList< T > | FindBinaryList (string key) |
| Retrieves a subset of the list matching the key More...
|
|
override T | FindBinary (string key) |
| Retrieves a single entry from the list matching the key More...
|
|
override bool | Has (string key) |
| Specifies if the BinaryList has the given key (similar to Contains or Any) More...
|
|
override int | BinarySearch (string key) |
| Returns the index of the element (so that you know for sure if you found something) More...
|
|
virtual IList< T > | FindBinaryList (TKey key) |
| Retrieves a subset of the list matching the key More...
|
|
virtual T | FindBinary (TKey key) |
| Retrieves a single entry from the list matching the key More...
|
|
virtual bool | Has (TKey key) |
| Specifies if the BinaryList has the given key (similar to Contains or Any) More...
|
|
virtual int | BinarySearch (TKey key) |
| Returns the index of the element (so that you know for sure if you found something) More...
|
|
virtual IEnumerable< T2 > | Intersect< T2 > (IEnumerable< T2 > list, Func< T2, TKey > keySelector) |
| Returns the items from the provided enumeration that match (intersect) on the provided key (Eg. Join where selecting the provided enumeration objects) More...
|
|
virtual IEnumerable< T2 > | NonIntersect< T2 > (IEnumerable< T2 > list, Func< T2, TKey > keySelector) |
| Returns the items from the provided enumeration that don't match (intersect) on the provided key (eg. left join where not exists; selecting the provided enumeration objects) More...
|
|
A class that allows binary operations based on a case-insensitive property on the object
- Template Parameters
-