operator [] method

T? operator [](
  1. dynamic key
)

Implementation

T? operator [](key) {
  return map[key]; // ??= word.frac() ?? Frac('');
}