BiMap.delete_key
You're seeing just the function
delete_key
, go back to BiMap module for more information.
Specs
Deletes {key, _}
pair from bimap
.
If the key
does not exist, returns bimap
unchanged.
Examples
iex> bimap = BiMap.new([a: 1, b: 2])
iex> BiMap.delete_key(bimap, :b)
#BiMap<[a: 1]>
iex> BiMap.delete_key(bimap, :c)
#BiMap<[a: 1, b: 2]>