BiMap.keys
You're seeing just the function
keys
, go back to BiMap module for more information.
Specs
Returns all keys from bimap
.
Examples
iex> bimap = BiMap.new([a: 1, b: 2])
iex> BiMap.keys(bimap)
[:a, :b]