operator [] method
V?
operator [](
- K k
Returns the value for the given key or null if key is not in the map.
Implementation
V? operator [](K k) {
_count();
return _m[k];
}
Returns the value for the given key or null if key is not in the map.
V? operator [](K k) {
_count();
return _m[k];
}