contains method

ValueCell<bool> contains(
  1. ValueCell elem
)

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

Implementation

ValueCell<bool> contains(ValueCell elem) => (this, elem).apply((set, elem) => set.contains(elem),
  key: _SetContainsKey(this, elem),
).store(changesOnly: true);