![]() | FixedDictionaryK, V Class |
[Missing <summary> documentation for "T:com.espertech.esper.compat.collections.FixedDictionary`2"]
Namespace: com.espertech.esper.compat.collections
public class FixedDictionary<K, V> : IDictionary, ICollection, IEnumerable, IEnumerable
[Missing <typeparam name="K"/> documentation for "T:com.espertech.esper.compat.collections.FixedDictionary`2"]
[Missing <typeparam name="V"/> documentation for "T:com.espertech.esper.compat.collections.FixedDictionary`2"]
The FixedDictionaryK, V type exposes the following members.
Name | Description | |
---|---|---|
![]() | FixedDictionaryK, V |
Initializes a new instance of the FixedDictionaryK, V class.
|
Name | Description | |
---|---|---|
![]() | Count |
Gets the number of elements contained in the ICollectionT.
|
![]() | FirstValue |
Returns the first value in the enumeration of values
|
![]() | IsReadOnly |
Gets a value indicating whether the ICollectionT is read-only.
|
![]() | Item |
Gets or sets the element with the specified key.
|
![]() | Keys |
Gets an ICollectionT containing the keys of the IDictionaryTKey, TValue.
|
![]() | Values |
Gets an ICollectionT containing the values in the IDictionaryTKey, TValue.
|
Name | Description | |
---|---|---|
![]() | Add(KeyValuePairTKey, TValue) | |
![]() | Add(K, V) |
Adds an element with the provided key and value to the IDictionaryTKey, TValue.
|
![]() | AssignIndex |
Assigns the index.
|
![]() | Clear |
Removes all items from the ICollectionT.
|
![]() | Contains | |
![]() | ContainsKey |
Determines whether the IDictionaryTKey, TValue contains an element with the specified key.
|
![]() | CopyTo | |
![]() | Get(K) |
Fetches the value associated with the specified key.
If no value can be found, then default(V) is returned.
|
![]() | Get(K, V) |
Fetches the value associated with the specified key.
If no value can be found, then the defaultValue is
returned.
|
![]() | GetEnumerator |
Returns an enumerator that iterates through the collection.
|
![]() | Push |
Sets the given key in the dictionary. If the key
already exists, then it is remapped to the new value.
If a value was previously mapped it is returned.
|
![]() | Put |
Sets the given key in the dictionary. If the key
already exists, then it is remapped to the new value.
|
![]() | PutAll | |
![]() | Remove(KeyValuePairTKey, TValue) | |
![]() | Remove(K) |
Removes the element with the specified key from the IDictionaryTKey, TValue.
|
![]() | Remove(K, V) |
Removes the item from the dictionary that is associated with
the specified key.
|
![]() | RemoveAndReturn |
Removes the item from the dictionary that is associated with
the specified key. The item if found is returned; if not,
default(V) is returned.
|
![]() | TryGetValue |
Gets the value associated with the specified key.
|