MoveNext method

int MoveNext(
  1. Pointer<Int32> hasNext
)

Implementation

int MoveNext(Pointer<Int32> hasNext) => ptr.ref.vtable
        .elementAt(5)
        .cast<
            Pointer<
                NativeFunction<
                    Int32 Function(Pointer, Pointer<Int32> hasNext)>>>()
        .value
        .asFunction<int Function(Pointer, Pointer<Int32> hasNext)>()(
    ptr.ref.lpVtbl, hasNext);