PySlice_GetIndices method Null safety

int PySlice_GetIndices (
  1. Pointer<PyObject> r,
  2. int length,
  3. Pointer<Int64> start,
  4. Pointer<Int64> stop,
  5. Pointer<Int64> step
)

Implementation

int PySlice_GetIndices(
  ffi.Pointer<PyObject> r,
  int length,
  ffi.Pointer<ffi.Int64> start,
  ffi.Pointer<ffi.Int64> stop,
  ffi.Pointer<ffi.Int64> step,
) {
  return _PySlice_GetIndices(
    r,
    length,
    start,
    stop,
    step,
  );
}