Class ChangeAwareDictionary<TKey, TValue>
Provides a notifiable associative memory
Inherited Members
Namespace: NMF.Expressions
Assembly: NMF.Expressions.Utilities.dll
Syntax
public class ChangeAwareDictionary<TKey, TValue>
Type Parameters
Name | Description |
---|---|
TKey | The type of the keys |
TValue | The type of the values |
Constructors
| Edit this page View SourceChangeAwareDictionary()
Creates a new change-aware dictionary
Declaration
public ChangeAwareDictionary()
ChangeAwareDictionary(ChangeAwareDictionary<TKey, TValue>)
Creates a new change-aware dictionary based on a template
Declaration
public ChangeAwareDictionary(ChangeAwareDictionary<TKey, TValue> template)
Parameters
Type | Name | Description |
---|---|---|
ChangeAwareDictionary<TKey, TValue> | template | The template dictionary |
ChangeAwareDictionary(IEqualityComparer<TKey>)
Creates a new change-aware dictionary
Declaration
public ChangeAwareDictionary(IEqualityComparer<TKey> comparer)
Parameters
Type | Name | Description |
---|---|---|
IEqualityComparer<TKey> | comparer | The comparer that should be used to compare dictionary entries |
Properties
| Edit this page View Sourcethis[TKey]
Gets or sets a value for the given key
Declaration
public TValue this[TKey key] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
TKey | key | The key element |
Property Value
Type | Description |
---|---|
TValue | The current value for the given key |
Methods
| Edit this page View SourceAsNotifiable(TKey)
Gets an object that tracks the current value for the given key
Declaration
public INotifyReversableValue<TValue> AsNotifiable(TKey key)
Parameters
Type | Name | Description |
---|---|---|
TKey | key | The given key |
Returns
Type | Description |
---|---|
INotifyReversableValue<TValue> | An object that tracks the current value and notifies clients when this value changes |
Forget(TKey)
Forgets the notifiable value for the given key
Declaration
public bool Forget(TKey key)
Parameters
Type | Name | Description |
---|---|---|
TKey | key | The key object |
Returns
Type | Description |
---|---|
bool | True, if there was an element for the given key, otherwise false |