BiMap.get
You're seeing just the function
get
, go back to BiMap module for more information.
Specs
Gets the value for specific key
in bimap
If key
is present in bimap
with value value
, then value
is returned.
Otherwise, default
is returned (which is nil
unless specified otherwise).
Examples
iex> BiMap.get(BiMap.new(), :a)
nil
iex> bimap = BiMap.new([a: 1])
iex> BiMap.get(bimap, :a)
1
iex> BiMap.get(bimap, :b)
nil
iex> BiMap.get(bimap, :b, 3)
3