|
Return m with key-value pairs from l added.
If key is in both m and l, the value in l is used.
-
m
:
Map<'Key, 'Value>
-
l
:
('Key * 'Value) list
-
Returns:
Map<'Key, 'Value>
|
|
Return m1 with items in m2 added.
If key is in both m1 and m2, the value in m2 is used.
-
m1
:
Map<'Key, 'Value>
-
m2
:
Map<'Key, 'Value>
-
Returns:
Map<'Key, 'Value>
|
|
Looks up key in table, returning defaultValue if
key is not in table
-
key
:
'Key
-
table
:
Map<'Key, 'Value>
-
defaultValue
:
'Value
-
Returns:
'Value
|
|
Return array of all keys in table
-
table
:
Map<'Key, 'Value>
-
Returns:
'Key[]
|
|
Return list of all keys in table
-
table
:
Map<'Key, 'Value>
-
Returns:
'Key list
|
|
Return array of all values in table
-
table
:
Map<'Key, 'Value>
-
Returns:
'Value[]
|
|
Return list of all values in table
-
table
:
Map<'Key, 'Value>
-
Returns:
'Value list
|