operator + method - Int32Pointer extension - dart:ffi library (original) (raw)

  1. @Since('3.3')

Pointer<Int32> operator +(

  1. int offset )

A pointer to the offsetth Int32 after this one.

Returns a pointer to the Int32 whose address isoffset times the size of Int32 after the address of this pointer. That is (this + offset).address == this.address + offset * sizeOf<Int32>().

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

Implementation

@Since('3.3')
@pragma("vm:prefer-inline")
Pointer<Int32> operator +(int offset) =>
    Pointer.fromAddress(address + sizeOf<Int32>() * offset);