operator [] method

int operator [] (int index)

The 32-bit unsigned integer at address + 4 * index.

A Dart integer is truncated to 32 bits (as if by .toUnsigned(32)) before being stored, and the 32-bit value is zero-extended when it is loaded.

The address must be 4-byte aligned.

Implementation

external int operator [](int index);