(a, b)
| 113 | return _auto_broadcast(a, b, tirx.GT) |
| 114 | |
| 115 | def _ge(a, b): |
| 116 | return _auto_broadcast(a, b, tirx.GE) |
| 117 | |
| 118 | def r(op: type, i: int, m: OpMethod): # pylint: disable=invalid-name |
| 119 | register_op(ty, op, i)(m) |
nothing calls this directly
no test coverage detected