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