Interface IGrouping<TObject, TKey, TGroupKey>
- Namespace
- Dynamic
Data
- Assembly
- DynamicData.dll
Represents a group which provides an update after any value within the group changes.
Type Parameters
TObject
The type of the object.
TKey
The type of the key.
TGroupKey
The type of the group key.
- Extension Methods
Properties
Count
Gets the count.
Property Value
Items
Gets the items.
Property Value
- IEnumerable<TObject>
Key
Gets the group key.
Property Value
- TGroup
Key
KeyValues
Gets the items together with their keys.
Property Value
- IEnumerable<Key
Value <TKey, TObject>>Pair The key values.
Keys
Gets the keys.
Property Value
- IEnumerable<TKey>
Methods
Lookup(TKey)
Lookup a single item using the specified key.
Parameters
key
TKeyThe key.
Returns
- Optional<TObject>
The value that is looked up.
Remarks
Fast indexed lookup.