operator [] method

int operator [](
  1. covariant int key
)

Implementation

int operator [](covariant int key) {
  return data[key];
}