PySet_NextEntry method Null safety

int PySet_NextEntry (
  1. Pointer<PyObject> set_1,
  2. Pointer<Int64> pos,
  3. Pointer<Pointer<PyObject>> key,
  4. Pointer<Int64> hash
)

Implementation

int PySet_NextEntry(
  ffi.Pointer<PyObject> set_1,
  ffi.Pointer<ffi.Int64> pos,
  ffi.Pointer<ffi.Pointer<PyObject>> key,
  ffi.Pointer<ffi.Int64> hash,
) {
  return _PySet_NextEntry(
    set_1,
    pos,
    key,
    hash,
  );
}