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