Class IncrementalLookup<TSource, TKey>
Implements an incremental lookup
Inherited Members
Namespace: NMF.Expressions.Linq
Assembly: NMF.Expressions.Utilities.dll
Syntax
public class IncrementalLookup<TSource, TKey> : ObservableEnumerable<TKey>, INotifyEnumerable<TKey>, INotifyEnumerable, INotifiable, ICollection<TKey>, IEnumerable<TKey>, IEnumerable, INotifyCollectionChanged, IDisposable, ISuccessorList, INotifyLookup<TSource, TKey>
Type Parameters
Name | Description |
---|---|
TSource | The source type of elements |
TKey | The type along which the elements are grouped |
Constructors
| Edit this page View SourceIncrementalLookup(INotifyEnumerable<TSource>, ObservingFunc<TSource, TKey>)
Creates an incremental lookup
Declaration
public IncrementalLookup(INotifyEnumerable<TSource> source, ObservingFunc<TSource, TKey> keySelector)
Parameters
Type | Name | Description |
---|---|---|
INotifyEnumerable<TSource> | source | The source of elements |
ObservingFunc<TSource, TKey> | keySelector | A function that selects the keys for an element |
Properties
| Edit this page View SourceDependencies
Nodes that notify this node.
Declaration
public override IEnumerable<INotifiable> Dependencies { get; }
Property Value
Type | Description |
---|---|
IEnumerable<INotifiable> |
Overrides
| Edit this page View Sourcethis[TKey]
Gets the collection of elements for the given key
Declaration
public INotifyEnumerable<TSource> this[TKey key] { get; }
Parameters
Type | Name | Description |
---|---|---|
TKey | key | The key |
Property Value
Type | Description |
---|---|
INotifyEnumerable<TSource> | A collection of associated elements |
Keys
Gets a collection of keys
Declaration
public INotifyEnumerable<TKey> Keys { get; }
Property Value
Type | Description |
---|---|
INotifyEnumerable<TKey> |
Methods
| Edit this page View SourceGetEnumerator()
Declaration
public override IEnumerator<TKey> GetEnumerator()
Returns
Type | Description |
---|---|
IEnumerator<TKey> |
Overrides
| Edit this page View SourceNotify(IList<INotificationResult>)
Gets called when one of the dependencies signals a notification.
Declaration
public override INotificationResult Notify(IList<INotificationResult> sources)
Parameters
Type | Name | Description |
---|---|---|
IList<INotificationResult> | sources | Contains information about what triggered this notification. |
Returns
Type | Description |
---|---|
INotificationResult | An object describing the changes that happened in this notification. |
Overrides
| Edit this page View SourceOnAttach()
Gets called when a successor attaches and there was no successor before
Declaration
protected override void OnAttach()
Overrides
Implements
Extension Methods
ObservableExtensions.Average<TSource>(INotifyEnumerable<TSource>, Expression<Func<TSource, double>>)
ObservableExtensions.Average<TSource>(INotifyEnumerable<TSource>, Expression<Func<TSource, float?>>)
ObservableExtensions.IsProperSubsetOf<T>(INotifyEnumerable<T>, IEnumerable<T>, IEqualityComparer<T>)
ObservableExtensions.TopX<TItem, TKey>(INotifyEnumerable<TItem>, int, Expression<Func<TItem, TKey>>)