DoublePointer extension
Extension on Pointer specialized for the type argument Double.
Properties
Methods
-
asTypedList(
int length, {Pointer< NativeFinalizerFunction> ? finalizer, Pointer<Void> ? token}) → Float64List - Creates a typed list view backed by memory in the address space.
-
elementAt(
int index) → Pointer< Double> - Pointer arithmetic (takes element size into account).
Operators
-
operator +(
int offset) → Pointer< Double> -
A pointer to the
offset
th Double after this one. -
operator -(
int offset) → Pointer< Double> -
A pointer to the
offset
th Double before this one. -
operator [](
int index) → double -
The double at
address + sizeOf<Double>() * index
. -
operator []=(
int index, double value) → void -
The double at
address + sizeOf<Double>() * index
.