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