isUnorderedEquivalent method

bool isUnorderedEquivalent(
  1. Iterable<E> other
)

Check equality of the elements of this and other iterables without considering order.

Return true if two iterable have the same number of elements, and the elements of this iterable can be paired with the elements of the other iterable, so that each pair are equal.

Implementation

bool isUnorderedEquivalent(Iterable<E> other) =>
    _getUnorderedEquality<E>().equals(this, other);