|
Returns a new multiMap with the new binding added to the given multiMap.
-
key
:
'Key
-
value
:
'Value
-
source
:
MultiMap<'Key, 'Value>
-
Returns:
MultiMap<'Key, 'Value>
|
|
Maps values of the original multiMap.
-
mapping
:
'a -> 'b
-
source
:
MultiMap<'c, 'a>
-
Returns:
MultiMap<'c, 'b>
|
|
Converts an array of tuples to a multiMap.
-
source
:
('Key * 'Value)[]
-
Returns:
MultiMap<'Key, 'Value>
|
|
Converts a list of tuples to a multiMap.
-
source
:
('Key * 'Value) list
-
Returns:
MultiMap<'Key, 'Value>
|
|
Converts a seq of tuples to a multiMap.
-
source
:
('Key * 'Value) seq
-
Returns:
MultiMap<'Key, 'Value>
|
|
Converts a multiMap to an array of tuples.
-
source
:
MultiMap<'a, 'b>
-
Returns:
('a * 'b)[]
|
|
Converts a multiMap to a list of tuples.
-
source
:
MultiMap<'a, 'b>
-
Returns:
('a * 'b) list
|
|
Converts a multiMap to a seq of tuples.
-
arg0
:
MultiMap<'a, 'b>
-
Returns:
('a * 'b) seq
|