add method

void add(
  1. K key
)

Implementation

void add(K key) {
  if (_map[key] == null) {
    _map[key] = _index;
    _index += 1;
  }
}