operator [] method

V? operator [](
  1. K key
)

return the value at key

Implementation

V? operator [](K key) {
  return get(key);
}