operator - method
Returns a map containing all entries of the original map except the entry with the given key
.
The returned map preserves the entry iteration order of the original map.
Implementation
KtMap<K, V> operator -(K key) => minus(key);
Returns a map containing all entries of the original map except the entry with the given key
.
The returned map preserves the entry iteration order of the original map.
KtMap<K, V> operator -(K key) => minus(key);