Map.values
You're seeing just the function
values
, go back to Map module for more information.
Specs
Returns all values from map
.
Inlined by the compiler.
Examples
iex> Map.values(%{a: 1, b: 2})
[1, 2]