containsAll method

ValueCell<bool> containsAll(
  1. ValueCell<Iterable> elems
)

Returns a cell that evaluates to true if the Set contains elems.

Implementation

ValueCell<bool> containsAll(ValueCell<Iterable> elems) => (this, elems).apply((set, elems) => set.containsAll(elems),
    key: _SetContainsAllKey(this, elems),
);