py_binaryop method

bool py_binaryop(
  1. py_Ref lhs,
  2. py_Ref rhs,
  3. int op,
  4. int rop,
)

Perform a binary operation. The result will be set to py_retval(). The stack remains unchanged after the operation.

Implementation

bool py_binaryop(
  py_Ref lhs,
  py_Ref rhs,
  int op,
  int rop,
) {
  return _py_binaryop(
    lhs,
    rhs,
    op,
    rop,
  );
}