PyMapping_Length method

int PyMapping_Length(
  1. Pointer<PyObject> o
)

Implementation

int PyMapping_Length(
  ffi.Pointer<PyObject> o,
) {
  return _PyMapping_Length(
    o,
  );
}