BoolPointer extension
Extension on Pointer specialized for the type argument Bool.
- @Since('2.15')
Properties
Methods
Operators
-
operator +(
int offset) → Pointer< Bool> -
A pointer to the
offset
th Bool after this one. -
operator -(
int offset) → Pointer< Bool> -
A pointer to the
offset
th Bool before this one. -
operator [](
int index) → bool -
The bool at
address + sizeOf<Bool>() * index
. -
operator []=(
int index, bool value) → void -
The bool at
address + sizeOf<Bool>() * index
.