HashMap Module
Functional programming operators related to the HashMap<_,_> type.
Functions and values
Function or value | Description |
Full Usage:
applyDelta l r
Parameters:
HashMap<'K, 'V>
r : HashMapDelta<'K, 'V>
Returns: HashMap<'K, 'V> * HashMapDelta<'K, 'V>
|
|
|
|
Full Usage:
computeDeltaCustom add remove update l r
Parameters:
'A -> 'B -> ValueOption<ElementOperation<'B>>
remove : 'A -> 'B -> ValueOption<ElementOperation<'B>>
update : 'A -> 'B -> 'B -> ValueOption<ElementOperation<'B>>
l : HashMap<'A, 'B>
r : HashMap<'A, 'B>
Returns: HashMapDelta<'A, 'B>
|
|