operator [] method

V? operator [](
  1. K object
)

Implementation

V? operator [](K object) {
  return _container[object!] as V?;
}