FSharpMap<TKey, TValue>
public sealed class FSharpMap<TKey, TValue> : IComparable, ICollection<KeyValuePair<TKey, TValue>>, IDictionary<TKey, TValue>, IEnumerable, IEnumerable<KeyValuePair<TKey, TValue>>
Immutable maps. Keys are ordered by F# generic comparison.
The number of bindings in the map.
Returns true if there are no bindings in the map.
Lookup an element in the map. Raise KeyNotFoundException if no binding
exists in the map.
Builds a map that contains the bindings of the given IEnumerable.
Returns a new map with the binding added to the given map.
Tests if an element is in the domain of the map.
Removes an element from the domain of the map. No exception is raised if the element is not present.
Lookup an element in the map, returning a Some value if the element is in the domain
of the map and None if not.