add method

void add(
  1. int e
)

Implementation

void add(int e) {
  if (_set.add(e)) {
    _cachedHashCode = null;
  }
}