operator [] method

K? operator [](
  1. T key
)

Sets values by key

Implementation

K? operator [](T key) {
  return _storage[key];
}