Returns true if this set contains all elements from other.
other
bool containsAll(Iterable<E> other) { return other.every(contains); }