A Map is a collection that maps keys to values. Hash maps require keys that correctly support GetHashCode and Equals. Hash maps provide fast access (log32N hops). count is O(1).
Record Field | Description |
Full Usage:
count
Field type: int
|
|
Full Usage:
hasNull
Field type: bool
|
|
Full Usage:
nullValue
Field type: 'S
|
|
|
Instance member | Description |
|
|
Full Usage:
this.ContainsKey(key)
Parameters:
'T
Returns: bool
|
|
Full Usage:
this.Count
Returns: int
|
|
Full Usage:
this.[key]
Parameters:
'T
Returns: 'S
|
|
Full Usage:
this.Iterator()
Returns: seq<'T * 'S>
|
|
Full Usage:
this.Length
Returns: int
|
|
|
|
Static member | Description |
|
|
Full Usage:
PersistentHashMap.ofSeq items
Parameters:
seq<'T * 'S>
Returns: PersistentHashMap<'T, 'S>
|
|