PyMemoryView_GetContiguous method

Pointer<PyObject> PyMemoryView_GetContiguous(
  1. Pointer<PyObject> base,
  2. int buffertype,
  3. int order
)

Implementation

ffi.Pointer<PyObject> PyMemoryView_GetContiguous(
  ffi.Pointer<PyObject> base,
  int buffertype,
  int order,
) {
  return _PyMemoryView_GetContiguous(
    base,
    buffertype,
    order,
  );
}