operator [] method

  1. @nonVirtual
T operator [](
  1. int index
)

Returns the scalar at the provided index.

Implementation

@nonVirtual
T operator [](int index) {
  RangeError.checkValidIndex(index, this, 'index', count);
  return getUnchecked(index);
}