On this page
Map
A set of functions for working with maps.
Maps are the “go to” key-value data structure in Elixir. Maps can be created with the %{} syntax, and key-value pairs can be expressed as key => value:
iex> %{}
%{}
iex> %{"one" => :two, 3 => "four"}
%{3 => "four", "one" => :two}
Key-value pairs in a map do not follow any order (that’s why the printed map in the example above has a different order than the map that was created).
Maps do not impose any restriction on the key type: anything can be a key in a map. As a key-value structure, maps do not allow duplicated keys; keys are compared using the exact-equality operator (===). If colliding keys are defined in a map literal, the last one prevails.
When the key in a key-value pair is an atom, the key: value shorthand syntax can be used (as in many other special forms), provided key-value pairs are put at the end:
iex> %{"hello" => "world", a: 1, b: 2}
%{:a => 1, :b => 2, "hello" => "world"}
Keys in maps can be accessed through some of the functions in this module (such as Map.get/3 or Map.fetch/2) or through the [] syntax provided by the Access module:
iex> map = %{a: 1, b: 2}
iex> Map.fetch(map, :a)
{:ok, 1}
iex> map[:b]
2
iex> map["non_existing_key"]
nil
The alternative access syntax map.key is provided alongside [] when the map has a :key key; note that while map[key] will return nil if map doesn’t contain the key key, map.key will raise if map doesn’t contain the key :key.
iex> map = %{foo: "bar", baz: "bong"}
iex> map.foo
"bar"
iex> map.non_existing_key
** (KeyError) key :non_existing_key not found in: %{baz: "bong", foo: "bar"}
Maps can be pattern matched on; when a map is on the left-hand side of a pattern match, it will match if the map on the right-hand side contains the keys on the left-hand side and their values match the ones on the left-hand side. This means that an empty map matches every map.
iex> %{} = %{foo: "bar"}
%{foo: "bar"}
iex> %{a: a} = %{:a => 1, "b" => 2, [:c, :e, :e] => 3}
iex> a
1
iex> %{:c => 3} = %{:a => 1, 2 => :b}
** (MatchError) no match of right hand side value: %{2 => :b, :a => 1}
Variables can be used as map keys both when writing map literals as well as when matching:
iex> n = 1
1
iex> %{n => :one}
%{1 => :one}
iex> %{^n => :one} = %{1 => :one, 2 => :two, 3 => :three}
%{1 => :one, 2 => :two, 3 => :three}
Maps also support a specific update syntax to update the value stored under existing atom keys:
iex> map = %{one: 1, two: 2}
iex> %{map | one: "one"}
%{one: "one", two: 2}
iex> %{map | three: 3}
** (KeyError) key :three not found
Modules to work with maps
This module aims to provide functions that perform operations specific to maps (like accessing keys, updating values, and so on). For traversing maps as collections, developers should use the Enum module that works across a variety of data types.
The Kernel module also provides a few functions to work with maps: for example, Kernel.map_size/1 to know the number of key-value pairs in a map or Kernel.is_map/1 to know if a term is a map.
Summary
Types
Functions
- delete(map, key)
-
Deletes the entry in
mapfor a specifickey - drop(map, keys)
-
Drops the given
keysfrommap - equal?(map1, map2)
-
Checks if two maps are equal
- fetch(map, key)
-
Fetches the value for a specific
keyin the givenmap - fetch!(map, key)
-
Fetches the value for a specific
keyin the givenmap, erroring out ifmapdoesn’t containkey - from_struct(struct)
-
Converts a
structto map - get(map, key, default \\ nil)
-
Gets the value for a specific
keyinmap - get_and_update(map, key, fun)
-
Gets the value from
keyand updates it, all in one pass - get_and_update!(map, key, fun)
-
Gets the value from
keyand updates it. Raises if there is nokey - get_lazy(map, key, fun)
-
Gets the value for a specific
keyinmap - has_key?(map, key)
-
Returns whether the given
keyexists in the givenmap - keys(map)
-
Returns all keys from
map - merge(map1, map2)
-
Merges two maps into one
- merge(map1, map2, callback)
-
Merges two maps into one, resolving conflicts through the given
callback - new()
-
Returns a new empty map
- new(enumerable)
-
Creates a map from an
enumerable - new(enumerable, transform)
-
Creates a map from an
enumerablevia the given transformation function - pop(map, key, default \\ nil)
-
Returns and removes the value associated with
keyinmap - pop_lazy(map, key, fun)
-
Lazily returns and removes the value associated with
keyinmap - put(map, key, value)
-
Puts the given
valueunderkeyinmap - put_new(map, key, value)
-
Puts the given
valueunderkeyunless the entrykeyalready exists inmap - put_new_lazy(map, key, fun)
-
Evaluates
funand puts the result underkeyinmapunlesskeyis already present - split(map, keys)
-
Takes all entries corresponding to the given
keysinmapsand extracts them into a separate map - take(map, keys)
-
Returns a new map with all the key-value pairs in
mapwhere the key is inkeys - to_list(map)
-
Converts
mapto a list - update(map, key, initial, fun)
-
Updates the
keyinmapwith the given function - update!(map, key, fun)
-
Updates
keywith the given function - values(map)
-
Returns all values from
map
Types
key()
key() :: any()
value()
value() :: any()
Functions
delete(map, key)
delete(map(), key()) :: map()
Deletes the entry in map for a specific key.
If the key does not exist, returns map unchanged.
Examples
iex> Map.delete(%{a: 1, b: 2}, :a)
%{b: 2}
iex> Map.delete(%{b: 2}, :a)
%{b: 2}
drop(map, keys)
drop(map(), Enumerable.t()) :: map()
Drops the given keys from map.
If keys contains keys that are not in map, they’re simply ignored.
Examples
iex> Map.drop(%{a: 1, b: 2, c: 3}, [:b, :d])
%{a: 1, c: 3}
equal?(map1, map2)
equal?(map(), map()) :: boolean()
Checks if two maps are equal.
Two maps are considered to be equal if they contain the same keys and those keys contain the same values.
Examples
iex> Map.equal?(%{a: 1, b: 2}, %{b: 2, a: 1})
true
iex> Map.equal?(%{a: 1, b: 2}, %{b: 1, a: 2})
false
fetch(map, key)
fetch(map(), key()) :: {:ok, value()} | :error
Fetches the value for a specific key in the given map.
If map contains the given key with value value, then {:ok, value} is returned. If map doesn’t contain key, :error is returned.
Examples
iex> Map.fetch(%{a: 1}, :a)
{:ok, 1}
iex> Map.fetch(%{a: 1}, :b)
:error
fetch!(map, key)
fetch!(map(), key()) :: value() | no_return()
Fetches the value for a specific key in the given map, erroring out if map doesn’t contain key.
If map contains the given key, the corresponding value is returned. If map doesn’t contain key, a KeyError exception is raised.
Examples
iex> Map.fetch!(%{a: 1}, :a)
1
iex> Map.fetch!(%{a: 1}, :b)
** (KeyError) key :b not found in: %{a: 1}
from_struct(struct)
from_struct(atom() | struct()) :: map()
Converts a struct to map.
It accepts the struct module or a struct itself and simply removes the __struct__ field from the given struct or from a new struct generated from the given module.
Example
defmodule User do
defstruct [:name]
end
Map.from_struct(User)
#=> %{name: nil}
Map.from_struct(%User{name: "john"})
#=> %{name: "john"}
get(map, key, default \\ nil)
get(map(), key(), value()) :: value()
Gets the value for a specific key in map.
If key is present in map with value value, then value is returned. Otherwise, default is returned (which is nil unless specified otherwise).
Examples
iex> Map.get(%{}, :a)
nil
iex> Map.get(%{a: 1}, :a)
1
iex> Map.get(%{a: 1}, :b)
nil
iex> Map.get(%{a: 1}, :b, 3)
3
get_and_update(map, key, fun)
get_and_update(map(), key(), (value() -> {get, value()} | :pop)) :: {get, map()} when get: term()
Gets the value from key and updates it, all in one pass.
fun is called with the current value under key in map (or nil if key is not present in map) and must return a two-element tuple: the “get” value (the retrieved value, which can be operated on before being returned) and the new value to be stored under key in the resulting new map. fun may also return :pop, which means the current value shall be removed from map and returned (making this function behave like Map.pop(map, key).
The returned value is a tuple with the “get” value returned by fun and a new map with the updated value under key.
Examples
iex> Map.get_and_update(%{a: 1}, :a, fn current_value ->
...> {current_value, "new value!"}
...> end)
{1, %{a: "new value!"}}
iex> Map.get_and_update(%{a: 1}, :b, fn current_value ->
...> {current_value, "new value!"}
...> end)
{nil, %{b: "new value!", a: 1}}
iex> Map.get_and_update(%{a: 1}, :a, fn _ -> :pop end)
{1, %{}}
iex> Map.get_and_update(%{a: 1}, :b, fn _ -> :pop end)
{nil, %{a: 1}}
get_and_update!(map, key, fun)
get_and_update!(map(), key(), (value() -> {get, value()})) ::
{get, map()} |
no_return() when get: term()
Gets the value from key and updates it. Raises if there is no key.
Behaves exactly like get_and_update/3, but raises a KeyError exception if key is not present in map.
Examples
iex> Map.get_and_update!(%{a: 1}, :a, fn current_value ->
...> {current_value, "new value!"}
...> end)
{1, %{a: "new value!"}}
iex> Map.get_and_update!(%{a: 1}, :b, fn current_value ->
...> {current_value, "new value!"}
...> end)
** (KeyError) key :b not found in: %{a: 1}
iex> Map.get_and_update!(%{a: 1}, :a, fn _ ->
...> :pop
...> end)
{1, %{}}
get_lazy(map, key, fun)
get_lazy(map(), key(), (() -> value())) :: value()
Gets the value for a specific key in map.
If key is present in map with value value, then value is returned. Otherwise, fun is evaluated and its result is returned.
This is useful if the default value is very expensive to calculate or generally difficult to setup and teardown again.
Examples
iex> map = %{a: 1}
iex> fun = fn ->
...> # some expensive operation here
...> 13
...> end
iex> Map.get_lazy(map, :a, fun)
1
iex> Map.get_lazy(map, :b, fun)
13
has_key?(map, key)
has_key?(map(), key()) :: boolean()
Returns whether the given key exists in the given map.
Examples
iex> Map.has_key?(%{a: 1}, :a)
true
iex> Map.has_key?(%{a: 1}, :b)
false
keys(map)
keys(map()) :: [key()]
Returns all keys from map.
Examples
iex> Map.keys(%{a: 1, b: 2})
[:a, :b]
merge(map1, map2)
merge(map(), map()) :: map()
Merges two maps into one.
All keys in map2 will be added to map1, overriding any existing one (i.e., the keys in map2 “have precedence” over the ones in map1).
If you have a struct and you would like to merge a set of keys into the struct, do not use this function, as it would merge all keys on the right side into the struct, even if the key is not part of the struct. Instead, use Kernel.struct/2.
Examples
iex> Map.merge(%{a: 1, b: 2}, %{a: 3, d: 4})
%{a: 3, b: 2, d: 4}
merge(map1, map2, callback)
merge(map(), map(), (key(), value(), value() -> value())) :: map()
Merges two maps into one, resolving conflicts through the given callback.
All keys in map2 will be added to map1. The given function will be invoked when there are duplicate keys; its arguments are key (the duplicate key), value1 (the value of key in map1), and value2 (the value of key in map2). The value returned by callback is used as the value under key in the resulting map.
Examples
iex> Map.merge(%{a: 1, b: 2}, %{a: 3, d: 4}, fn _k, v1, v2 ->
...> v1 + v2
...> end)
%{a: 4, b: 2, d: 4}
new()
new() :: map()
Returns a new empty map.
Examples
iex> Map.new
%{}
new(enumerable)
new(Enumerable.t()) :: map()
Creates a map from an enumerable.
Duplicated keys are removed; the latest one prevails.
Examples
iex> Map.new([{:b, 1}, {:a, 2}])
%{a: 2, b: 1}
iex> Map.new([a: 1, a: 2, a: 3])
%{a: 3}
new(enumerable, transform)
new(Enumerable.t(), (term() -> {key(), value()})) :: map()
Creates a map from an enumerable via the given transformation function.
Duplicated keys are removed; the latest one prevails.
Examples
iex> Map.new([:a, :b], fn x -> {x, x} end)
%{a: :a, b: :b}
pop(map, key, default \\ nil)
pop(map(), key(), value()) :: {value(), map()}
Returns and removes the value associated with key in map.
If key is present in map with value value, {value, new_map} is returned where new_map is the result of removing key from map. If key is not present in map, {default, map} is returned.
Examples
iex> Map.pop(%{a: 1}, :a)
{1, %{}}
iex> Map.pop(%{a: 1}, :b)
{nil, %{a: 1}}
iex> Map.pop(%{a: 1}, :b, 3)
{3, %{a: 1}}
pop_lazy(map, key, fun)
pop_lazy(map(), key(), (() -> value())) :: {value(), map()}
Lazily returns and removes the value associated with key in map.
If key is present in map with value value, {value, new_map} is returned where new_map is the result of removing key from map. If key is not present in map, {fun_result, map} is returned, where fun_result is the result of applying fun.
This is useful if the default value is very expensive to calculate or generally difficult to setup and teardown again.
Examples
iex> map = %{a: 1}
iex> fun = fn ->
...> # some expensive operation here
...> 13
...> end
iex> Map.pop_lazy(map, :a, fun)
{1, %{}}
iex> Map.pop_lazy(map, :b, fun)
{13, %{a: 1}}
put(map, key, value)
put(map(), key(), value()) :: map()
Puts the given value under key in map.
Examples
iex> Map.put(%{a: 1}, :b, 2)
%{a: 1, b: 2}
iex> Map.put(%{a: 1, b: 2}, :a, 3)
%{a: 3, b: 2}
put_new(map, key, value)
put_new(map(), key(), value()) :: map()
Puts the given value under key unless the entry key already exists in map.
Examples
iex> Map.put_new(%{a: 1}, :b, 2)
%{b: 2, a: 1}
iex> Map.put_new(%{a: 1, b: 2}, :a, 3)
%{a: 1, b: 2}
put_new_lazy(map, key, fun)
put_new_lazy(map(), key(), (() -> value())) :: map()
Evaluates fun and puts the result under key in map unless key is already present.
This function is useful in case you want to compute the value to put under key only if key is not already present (e.g., the value is expensive to calculate or generally difficult to setup and teardown again).
Examples
iex> map = %{a: 1}
iex> fun = fn ->
...> # some expensive operation here
...> 3
...> end
iex> Map.put_new_lazy(map, :a, fun)
%{a: 1}
iex> Map.put_new_lazy(map, :b, fun)
%{a: 1, b: 3}
split(map, keys)
split(map(), Enumerable.t()) :: {map(), map()}
Takes all entries corresponding to the given keys in maps and extracts them into a separate map.
Returns a tuple with the new map and the old map with removed keys.
Keys for which there are no entries in map are ignored.
Examples
iex> Map.split(%{a: 1, b: 2, c: 3}, [:a, :c, :e])
{%{a: 1, c: 3}, %{b: 2}}
take(map, keys)
take(map(), Enumerable.t()) :: map()
Returns a new map with all the key-value pairs in map where the key is in keys.
If keys contains keys that are not in map, they’re simply ignored.
Examples
iex> Map.take(%{a: 1, b: 2, c: 3}, [:a, :c, :e])
%{a: 1, c: 3}
to_list(map)
to_list(map()) :: [{term(), term()}]
Converts map to a list.
Each key-value pair in the map is converted to a two-element tuple {key, value} in the resulting list.
Examples
iex> Map.to_list(%{a: 1})
[a: 1]
iex> Map.to_list(%{1 => 2})
[{1, 2}]
update(map, key, initial, fun)
update(map(), key(), value(), (value() -> value())) :: map()
Updates the key in map with the given function.
If key is present in map with value value, fun is invoked with argument value and its result is used as the new value of key. If key is not present in map, initial is inserted as the value of key.
Examples
iex> Map.update(%{a: 1}, :a, 13, &(&1 * 2))
%{a: 2}
iex> Map.update(%{a: 1}, :b, 11, &(&1 * 2))
%{a: 1, b: 11}
update!(map, key, fun)
update!(map(), key(), (value() -> value())) :: map() | no_return()
Updates key with the given function.
If key is present in map with value value, fun is invoked with argument value and its result is used as the new value of key. If key is not present in map, a KeyError exception is raised.
Examples
iex> Map.update!(%{a: 1}, :a, &(&1 * 2))
%{a: 2}
iex> Map.update!(%{a: 1}, :b, &(&1 * 2))
** (KeyError) key :b not found in: %{a: 1}
values(map)
values(map()) :: [value()]
Returns all values from map.
Examples
iex> Map.values(%{a: 1, b: 2})
[1, 2]
© 2012 Plataformatec
Licensed under the Apache License, Version 2.0.
https://hexdocs.pm/elixir/1.4.5/Map.html