ArrayArray<T extends NativeType>#
Annotations: @Since.new('2.13')
Bounds checking indexing methods on Arrays of Array.
Properties#
elements extension no setter#
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#
Available on Array<T extends NativeType>, provided by the ArrayArray<T extends NativeType> extension
Implementation
external Array<T> operator [](int index);
operator []=() extension#
Available on Array<T extends NativeType>, provided by the ArrayArray<T extends NativeType> extension
Implementation
external void operator []=(int index, Array<T> value);