operator [] method

V? operator [](
  1. 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];
}