ChangeableHashMap<'Key, 'Value> Type
Changeable adaptive map that allows mutation by user-code and implements amap.
Constructors
Constructor | Description |
Full Usage:
ChangeableHashMap(elements)
Parameters:
('Key * 'Value) seq
Returns: ChangeableHashMap<'Key, 'Value>
|
|
Full Usage:
ChangeableHashMap(elements)
Parameters:
('Key * 'Value) seq
Returns: ChangeableHashMap<'Key, 'Value>
|
|
Full Usage:
ChangeableHashMap(initial)
Parameters:
HashMap<'Key, 'Value>
Returns: ChangeableHashMap<'Key, 'Value>
|
|
|
|
Instance members
Instance member | Description |
Full Usage:
this.Add
Parameters:
'Key
value : 'Value
Returns: bool
|
|
Full Usage:
this.Clear
|
|
Full Usage:
this.ContainsKey
Parameters:
'Key
Returns: bool
|
|
Full Usage:
this.Count
Returns: int
|
|
|
|
|
|
Full Usage:
this.IsEmpty
Returns: bool
|
|
Full Usage:
this[key]
Returns: 'Key
|
|
|
|
Full Usage:
this.Remove
Parameters:
'Key
Returns: bool
|
|
Full Usage:
this.TryGetValue
Parameters:
'Key
Returns: 'Value option
|
|
|
|
Full Usage:
this.UpdateTo
Parameters:
HashMap<'Key, 'T2>
init : 'T2 -> 'Value
update : 'Value -> 'T2 -> 'Value
|
|
Full Usage:
this.Value
|