Module hashmap

Source
Available on crate feature std only.
Expand description

Merge strategies for HashMap

Functionsยง

intersection
Merge recursively elements only if the key is present in left and right
merge
On conflict, merge elements from right to left.
recursive
On conflict, recursively merge the elements
replace
On conflict, replace elements of left with right.