equals method

  1. @override
bool equals(
  1. TTMultiMapList<V> e1,
  2. TTMultiMapList<V> e2, {
  3. bool strict = false,
})

If strict is true then compares exact structure. If strict is false then compares keys, values and node marking.

strict == 'false' should suffice for almost all cases.

Implementation

@override
bool equals(TTMultiMapList<V> e1, TTMultiMapList<V> e2,
        {bool strict = false}) =>
    _ttMultiMapEquality.equals(e1, e2, _valueEquality, strict);