PySlice_Unpack method Null safety

int PySlice_Unpack (
  1. Pointer<PyObject> slice,
  2. Pointer<Int64> start,
  3. Pointer<Int64> stop,
  4. Pointer<Int64> step
)

Implementation

int PySlice_Unpack(
  ffi.Pointer<PyObject> slice,
  ffi.Pointer<ffi.Int64> start,
  ffi.Pointer<ffi.Int64> stop,
  ffi.Pointer<ffi.Int64> step,
) {
  return _PySlice_Unpack(
    slice,
    start,
    stop,
    step,
  );
}