add method

bool add(
  1. E value
)

As Set.add.

Implementation

bool add(E value) {
  _maybeCheckElement(value);
  return _safeSet.add(value);
}