(
name: str,
c_function_name: str,
return_type: RType = int_rprimitive,
error_kind: int = ERR_NEVER,
)
| 134 | |
| 135 | |
| 136 | def int_binary_op( |
| 137 | name: str, |
| 138 | c_function_name: str, |
| 139 | return_type: RType = int_rprimitive, |
| 140 | error_kind: int = ERR_NEVER, |
| 141 | ) -> None: |
| 142 | binary_op( |
| 143 | name=name, |
| 144 | arg_types=[int_rprimitive, int_rprimitive], |
| 145 | return_type=return_type, |
| 146 | c_function_name=c_function_name, |
| 147 | error_kind=error_kind, |
| 148 | ) |
| 149 | |
| 150 | |
| 151 | # Binary, unary and augmented assignment operations that operate on CPyTagged ints |
no test coverage detected
searching dependent graphs…