py_hash method

bool py_hash(
  1. py_Ref arg0,
  2. Pointer<py_i64> out
)

Get the hash value of the object.

Implementation

bool py_hash(
  py_Ref arg0,
  ffi.Pointer<py_i64> out,
) {
  return _py_hash(
    arg0,
    out,
  );
}