BiMap.to_list
You're seeing just the function
to_list
, go back to BiMap module for more information.
Specs
Returns list of unique key-value pairs in bimap
.
Examples
iex> bimap = BiMap.new([a: "foo", b: "bar"])
iex> BiMap.to_list(bimap)
[a: "foo", b: "bar"]