A.OrdMap.drop
You're seeing just the function
drop
, go back to A.OrdMap module for more information.
Specs
Drops the given keys
from ord_map
.
If keys
contains keys that are not in ord_map
, they're simply ignored.
Examples
iex> ord_map = A.OrdMap.new(a: "Ant", b: "Bat", c: "Cat")
iex> A.OrdMap.drop(ord_map, [:b, :d])
#A.OrdMap<%{a: "Ant", c: "Cat"}, sparse?: true>