A.OrdMap.keys
You're seeing just the function
keys
, go back to A.OrdMap module for more information.
Specs
Returns all keys from ord_map
.
Examples
iex> ord_map = A.OrdMap.new(b: "Bat", c: "Cat", a: "Ant")
iex> A.OrdMap.keys(ord_map)
[:b, :c, :a]