containsAll method

bool containsAll(
  1. Iterable<T> other
)

Returns whether this ISet contains all the elements of other.

Implementation

bool containsAll(Iterable<T> other) {
  _count();
  return _s.containsAll(other);
}