BiMap.has_value-question-mark
You're seeing just the function
has_value-question-mark
, go back to BiMap module for more information.
Specs
Checks if bimap
contains value
.
Examples
iex> bimap = BiMap.new([a: "foo", b: "bar"])
iex> BiMap.has_value?(bimap, "foo")
true
iex> BiMap.has_value?(bimap, "moo")
false