NativeFloat64Array constructor
NativeFloat64Array(
- int size
Implementation
NativeFloat64Array(int size) : super(size) {
_list = calloc<Double>(size);
oneByteSize = sizeOf<Double>();
}
NativeFloat64Array(int size) : super(size) {
_list = calloc<Double>(size);
oneByteSize = sizeOf<Double>();
}