Map.new/1
defmodule Map do
def new(enumerable)
end
Creates a map from an enumerable
.
Duplicated keys are removed; the latest one prevails.
defmodule Map do
def new(enumerable)
end
Creates a map from an enumerable
.
Duplicated keys are removed; the latest one prevails.