BiMap.values

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

Specs

values(t()) :: [v()]

Returns all values from bimap.

Examples

iex> bimap = BiMap.new([a: 1, b: 2])
iex> BiMap.values(bimap)
[1, 2]