PySlice_GetIndicesEx method Null safety

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

Implementation

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