Signature: mapMerge(left: Map<K, V>, right: Map<K, V>) -> Map<K, V>

Description: Right-biased union. Same as left + right.

Parameters

Returns: Map

Example

mapMerge({"a": 1}, {"b": 2})  // {"a": 1, "b": 2}