操作符 + 方法
- @Since('3.3')
- int offset
指向此指针之后第 offset
个 Bool 的指针。
返回指向地址为 offset
倍 Bool
大小加上此指针地址的 Bool 的指针。即 (this + offset).address == this.address + offset * sizeOf<Bool>()
。
此外,(this + offset).value
等价于 this[offset]
,同样适用于设置。
实现
@Since('3.3')
@pragma("vm:prefer-inline")
Pointer<Bool> operator +(int offset) =>
Pointer.fromAddress(address + sizeOf<Bool>() * offset);