atomicLoad method

  1. @override
int atomicLoad(
  1. int index
)
override

Atomically reads the 32-bit element at index.

Implementation

@override
int atomicLoad(int index) {
  _checkIndex(index);
  return _atomicView[index];
}