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