py_binarymul method

bool py_binarymul(
  1. py_Ref lhs,
  2. py_Ref rhs
)

lhs * rhs

Implementation

bool py_binarymul(
  py_Ref lhs,
  py_Ref rhs,
) {
  return _py_binarymul(
    lhs,
    rhs,
  );
}