Map.delete/2
defmodule Map do
  def delete(map, key)
end
Deletes the entry in map for a specific key.
If the key does not exist, returns map unchanged.
defmodule Map do
  def delete(map, key)
end
Deletes the entry in map for a specific key.
If the key does not exist, returns map unchanged.