Array<T extends NativeType> constructor

Array<T extends NativeType>(
  1. int length,
  2. GetView<T> getView
)

Implementation

Array(int length, GetView<T> getView)
    : this._(allocate<T>(count: length), length, getView);