BiMap.to_list

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

Specs

to_list(t()) :: [{k(), v()}]

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"]