Enhanced C#
Loyc library documentation
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Events Pages
List of all members
Loyc.Collections.IDictionaryExWithChangeEvents< K, V > Interface Template Reference

Source file:
Inheritance diagram for Loyc.Collections.IDictionaryExWithChangeEvents< K, V >:
Loyc.Collections.IDictionaryEx< K, V > Loyc.Collections.IDictionaryWithChangeEvents< K, V > Loyc.Collections.IDictionaryImpl< K, V > Loyc.ICloneable< out T > Loyc.Collections.IDictionaryAndReadOnly< K, V > Loyc.Collections.INotifyListChanging< T, TCollection > Loyc.Collections.INotifyListChanged< T, TCollection > Loyc.Collections.ICollectionAndReadOnly< T > Loyc.Collections.IIndexed< in K, out V > Loyc.Collections.ITryGet< in K, out V > Loyc.Collections.IMIndexed< in K, V > Loyc.Collections.IDictionarySource< K, V > Loyc.Collections.IDictionarySink< in K, in V > Loyc.Collections.IDictionaryAndReadOnly< K, V >

Additional Inherited Members

- Properties inherited from Loyc.Collections.IDictionaryEx< K, V >
new V this[K key] [get, set]
 
new ICollection< K > Keys [get]
 
new ICollection< V > Values [get]
 
- Properties inherited from Loyc.Collections.IIndexed< in K, out V >
this[K key] [get]
 Gets the value associated with the specified key. More...
 
- Properties inherited from Loyc.Collections.IIndexedSink< in K, in V >
this[K key] [set]
 
- Properties inherited from Loyc.Collections.ISource< out T >
new int Count [get]
 Gets the number of items in the collection. More...
 
- Properties inherited from Loyc.Collections.ICount
int Count [get]
 Gets the number of items in the collection. More...
 
- Properties inherited from Loyc.Collections.IIsEmpty
bool IsEmpty [get]
 
- Properties inherited from Loyc.Collections.IMIndexed< in K, V >
new V this[K key] [get, set]
 Gets the value associated with the specified key. More...
 
- Public Member Functions inherited from Loyc.Collections.IDictionaryEx< K, V >
new bool ContainsKey (K key)
 
new bool TryGetValue (K key, out V value)
 
new void Add (K key, V value)
 
new bool Remove (K key)
 
new void Clear ()
 
Maybe< V > GetAndRemove (K key)
 Gets the value associated with the specified key, then removes the pair with that key from the dictionary. More...
 
bool GetAndEdit (ref K key, ref V value, DictEditMode mode)
 Combines a get and change operation into a single method call. You rarely need to call this method directly; the following extension methods are based on it: DictionaryExt.SwapIfPresent, DictionaryExt.AddIfNotPresent, DictionaryExt.AddOrGetExisting, DictionaryExt.ReplaceIfPresent, DictionaryExt.SetAndGet. More...
 
int AddRange (IEnumerable< KeyValuePair< K, V >> data, DictEditMode mode)
 Merges the contents of the specified sequence into this map. More...
 
- Public Member Functions inherited from Loyc.Collections.ITryGet< in K, out V >
TryGet (K key, out bool fail)
 Gets the item for the specified key or index, and does not throw an exception on failure. More...
 
- Public Member Functions inherited from Loyc.ICloneable< out T >
Clone ()
 
- Events inherited from Loyc.Collections.INotifyListChanging< T, TCollection >
ListChangingHandler< T,
TCollection > 
ListChanging
 Occurs when the collection associated with this interface is about to change. More...
 
- Events inherited from Loyc.Collections.INotifyListChanged< T, TCollection >
ListChangingHandler< T,
TCollection > 
ListChanged
 Occurs when the collection associated with this interface has changed. More...