BoolPointer extension

Extension on Pointer specialized for the type argument Bool.

on
Annotations
  • @Since('2.15')

Properties

value bool
The bool at address.
getter/setter pair

Methods

elementAt(int index) Pointer<Bool>
Pointer arithmetic (takes element size into account).

Operators

operator +(int offset) Pointer<Bool>
A pointer to the offsetth Bool after this one.
operator -(int offset) Pointer<Bool>
A pointer to the offsetth 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.