PySet_NextEntry method

int PySet_NextEntry(
  1. Pointer<PyObject> set1,
  2. Pointer<Py_ssize_t> pos,
  3. Pointer<Pointer<PyObject>> key,
  4. Pointer<Py_hash_t> hash,
)

Implementation

int PySet_NextEntry(
  ffi.Pointer<PyObject> set1,
  ffi.Pointer<Py_ssize_t> pos,
  ffi.Pointer<ffi.Pointer<PyObject>> key,
  ffi.Pointer<Py_hash_t> hash,
) {
  return _PySet_NextEntry(
    set1,
    pos,
    key,
    hash,
  );
}