|
|
| ValueList (MultiMap< K, V > map, K key) |
| |
|
List< V > | GetValues () |
| |
|
List< V > | GetOrMakeValues () |
| |
|
void | Add (V item) |
| |
|
void | Clear () |
| |
|
bool | Contains (V item) |
| |
|
void | CopyTo (V[] array, int arrayIndex) |
| |
|
IEnumerator< V > IEnumerable< V >. | GetEnumerator () |
| |
|
IEnumerator IEnumerable. | GetEnumerator () |
| |
|
List< V >.Enumerator | GetEnumerator () |
| |
|
bool | Remove (V item) |
| |
|
| MultiMap (IEnumerable< KeyValuePair< K, V >> pairs, IEqualityComparer< K >?comp=null) |
| |
|
| MultiMap (Dictionary< K, List< V >> dict) |
| |
|
| MultiMap (MultiMap< K, V > map) |
| |
|
| MultiMap (IEqualityComparer< K >?comp) |
| |
|
bool | ContainsKey (K key) |
| |
|
IEnumerator< KeyValuePair< K, V > > | GetEnumerator () |
| |
| bool | TryGetValue (K key, [MaybeNullWhen(false)] out ValueList value) |
| | The collection returned is always valid, but the method returns true only if the collection is not empty. More...
|
| |
|
void | Add (KeyValuePair< K, V > item) |
| |
|
void | Clear () |
| |
|
bool | Contains (KeyValuePair< K, V > item) |
| |
|
void | CopyTo (KeyValuePair< K, V >[] array, int arrayIndex) |
| |
|
bool | Remove (KeyValuePair< K, V > item) |
| |
|
bool | Remove (K key) |
| |
|
MultiMap< K, V > | Clone () |
| |
| void | CopyTo (T[] array, int arrayIndex) |
| | Copies the elements of the collection to an Array, starting at a particular array index. More...
|
| |
| bool | Contains (T item) |
| | Returns true if and only if the collection contains the specified item. More...
|
| |
|
bool | Remove (T item) |
| |
|
void | Add (T item) |
| |