Allocate an array with the garbage collector.
Has three variants: - _d_newarrayU leave elements uninitialized - _d_newarrayT initializes to 0 (e.g new int[]) - _d_newarrayiT initializes based on initializer retrieved from TypeInfo (e.g new float[])
the type of the resulting array, (may also be the corresponding array.ptr type)
.length of resulting array
newly allocated array
See Implementation
Allocate an array with the garbage collector.
Has three variants: - _d_newarrayU leave elements uninitialized - _d_newarrayT initializes to 0 (e.g new int[]) - _d_newarrayiT initializes based on initializer retrieved from TypeInfo (e.g new float[])