Map.keys

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

Specs

keys(map()) :: [key()]

Returns all keys from map.

Inlined by the compiler.

Examples

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