merge<K, V> function

Map<K, V> merge<K, V>(
  1. Map<K, V> first,
  2. Map<K, V> second
)

Merges two maps.

Implementation

Map<K, V> merge<K, V>(Map<K, V> first, Map<K, V> second) {
  return mergeAll([first, second]);
}