PyIter_Check method

int PyIter_Check(
  1. Pointer<PyObject> arg0
)

Implementation

int PyIter_Check(
  ffi.Pointer<PyObject> arg0,
) {
  return _PyIter_Check(
    arg0,
  );
}