Map.has_key?/2

defmodule Map do
  def has_key?(map, key)
end

Returns true if the given key exists in the given map.

Otherwise, returns false.