remove method

M<K, V> remove(
  1. K key
)

Implementation

M<K, V> remove(K key) {
  return !containsKey(key) ? this : MFlat<K, V>.unsafe(unlock..remove(key));
}