BiMap.equal-question-mark
You're seeing just the function
equal-question-mark
, go back to BiMap module for more information.
Specs
Checks if two bimaps are equal.
Two bimaps are considered to be equal if they contain the same keys and those keys contain the same values.
Examples
iex> Map.equal?(BiMap.new([a: 1, b: 2]), BiMap.new([b: 2, a: 1]))
true
iex> Map.equal?(BiMap.new([a: 1, b: 2]), BiMap.new([b: 1, a: 2]))
false