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