BiMap.right
You're seeing just the function
right
, go back to BiMap module for more information.
Specs
Returns value ➜ key
mapping of bimap
.
Examples
iex> bimap = BiMap.new([a: "foo", b: "bar"])
iex> BiMap.right(bimap)
%{"foo" => :a, "bar" => :b}