PyMapping_HasKey method

int PyMapping_HasKey(
  1. Pointer<PyObject> o,
  2. Pointer<PyObject> key
)

Implementation

int PyMapping_HasKey(
  ffi.Pointer<PyObject> o,
  ffi.Pointer<PyObject> key,
) {
  return _PyMapping_HasKey(
    o,
    key,
  );
}