PySet_NextEntry method Null safety
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,
);
}