操作符 + 方法
- @Since('3.3')
- int offset
指向此布尔值的 offset
th Bool
的指针。
返回一个指向地址为这个指针地址之后的 Bool
的指针,该地址为 offset
乘以 Bool
的大小。即 (this + offset).address == this.address + offset * sizeOf
。
同样,(this + offset).value
等同于 this[offset]
,设置操作也是类似。
实现
@Since('3.3')
@pragma("vm:prefer-inline")
Pointer<Bool> operator +(int offset) =>
Pointer.fromAddress(address + sizeOf<Bool>() * offset);