py_binaryand method

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

lhs & rhs

Implementation

bool py_binaryand(
  py_Ref lhs,
  py_Ref rhs,
) {
  return _py_binaryand(
    lhs,
    rhs,
  );
}