| Member | Description |
member Add : 'key * 'a -> Map<'key,'a> |
Return a new map with the binding added to the given map.
|
member ContainsKey : 'key -> bool |
Test is an element is in the domain of the map
|
member Count : int |
The number of bindings in the map
|
override Equals : obj -> bool | |
member IsEmpty : bool |
Return true if there are no bindings in the map.
|
member Item : 'key -> 'a with get |
Lookup an element in the map. Raise KeyNotFoundException if no binding
exists in the map.
|
member Remove : 'key -> Map<'key,'a> |
Remove an element from the domain of the map. No exception is raised if the element is not present.
|
member TryFind : 'key -> 'a option |
Lookup an element in the map, returning a Some value if the element is in the domain
of the map and None if not.
|