Additional operations on Map<'Key, 'Value>
Function or value | Description |
|
|
|
|
|
|
|
|
Full Usage:
Map.keys source
Parameters:
Map<'Key, 'T>
-
The input map.
Returns: seq<'Key>
A seq of the keys in the map.
|
|
|
The core `Map.map` function maps over values too, but it passes both key and value to the mapping function.
|
|
Keys that are not present on both Maps are dropped.
|
|
Keys that are not present on every Map are dropped.
|
|
|
|
|
|
|
Full Usage:
Map.values source
Parameters:
Map<'Key, 'T>
-
The input map.
Returns: seq<'T>
A seq of the values in the map.
|
|
|
Keys that are not present on both Maps are dropped.
|