PySlice_GetLongIndices method

int PySlice_GetLongIndices(
  1. Pointer<PySliceObject> self,
  2. Pointer<PyObject> length,
  3. Pointer<Pointer<PyObject>> start_ptr,
  4. Pointer<Pointer<PyObject>> stop_ptr,
  5. Pointer<Pointer<PyObject>> step_ptr,
)

Implementation

int PySlice_GetLongIndices(
  ffi.Pointer<PySliceObject> self,
  ffi.Pointer<PyObject> length,
  ffi.Pointer<ffi.Pointer<PyObject>> start_ptr,
  ffi.Pointer<ffi.Pointer<PyObject>> stop_ptr,
  ffi.Pointer<ffi.Pointer<PyObject>> step_ptr,
) {
  return _PySlice_GetLongIndices(
    self,
    length,
    start_ptr,
    stop_ptr,
    step_ptr,
  );
}