Map.values

You're seeing just the function values, go back to Map module for more information.

Specs

values(map()) :: [value()]

Returns all values from map.

Inlined by the compiler.

Examples

iex> Map.values(%{a: 1, b: 2})
[1, 2]