py_next method

int py_next(
  1. py_Ref arg0
)

Get the next element from the iterator. 1: success, 0: StopIteration, -1: error

Implementation

int py_next(
  py_Ref arg0,
) {
  return _py_next(
    arg0,
  );
}