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