Map.pop!/2
defmodule Map do
def pop!(map, key)
end
Returns and removes the value associated with key in map.
Raises KeyError
if key
is not present.
defmodule Map do
def pop!(map, key)
end
Returns and removes the value associated with key in map.
Raises KeyError
if key
is not present.