operator + method

ImmortalMap<K, V> operator +(
  1. ImmortalMap<K, V> other
)

Returns a copy of this map where all key/value pairs of other are added.

See addAll.

Implementation

ImmortalMap<K, V> operator +(ImmortalMap<K, V> other) => addAll(other);