PySlice_AdjustIndices method Null safety

int PySlice_AdjustIndices (
  1. int length,
  2. Pointer<Int64> start,
  3. Pointer<Int64> stop,
  4. int step
)

Implementation

int PySlice_AdjustIndices(
  int length,
  ffi.Pointer<ffi.Int64> start,
  ffi.Pointer<ffi.Int64> stop,
  int step,
) {
  return _PySlice_AdjustIndices(
    length,
    start,
    stop,
    step,
  );
}