Module merge2::hashmap

source ·
Expand description

Merge strategies for hash maps.

These strategies are only available if the std feature is enabled.

Functions

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