operator - method

  1. @Since('3.3')
Pointer<Bool> operator -(
  1. int offset
)

A pointer to the offsetth Bool before this one.

Equivalent to this + (-offset).

Returns a pointer to the Bool whose address is offset times the size of Bool before the address of this pointer. That is, (this - offset).address == this.address - offset * sizeOf<Bool>().

Also, (this - offset).value is equivalent to this[-offset], and similarly for setting,

Implementation

@Since('3.3')
Pointer<Bool> operator -(int offset) =>
    Pointer.fromAddress(address - sizeOf<Bool>() * offset);