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