ArrayArray<T extends NativeType>
LogoDart

ArrayArray<T extends NativeType>#

extension ArrayArray<T extends NativeType> on Array<Array<T>>

Annotations: @Since.new('2.13')

Bounds checking indexing methods on Arrays of Array.

Properties#

elements extension no setter#

List<Array<T>> get elements

A list view of the bytes of this array.

Has the same length and elements (as accessed using the index operator) as this array, and writes to either the list or this arrary are visible in both.

Available on Array<T extends NativeType>, provided by the ArrayArray<T extends NativeType> extension

Implementation
@Since('3.8')
external List<Array<T>> get elements;

Operators#

operator []() extension#

Array<T> operator [](int index)

Available on Array<T extends NativeType>, provided by the ArrayArray<T extends NativeType> extension

Implementation
external Array<T> operator [](int index);

operator []=() extension#

void operator []=(int index, Array<T> value)

Available on Array<T extends NativeType>, provided by the ArrayArray<T extends NativeType> extension

Implementation
external void operator []=(int index, Array<T> value);