(self, op, other, **kwargs)
| 1347 | return op(elem, *other, **kwargs) |
| 1348 | |
| 1349 | def reverse_operate(self, op, other, **kwargs): |
| 1350 | elem = object.__getattribute__(self, "_py_wrapper_literal")() |
| 1351 | return op(other, elem, **kwargs) |
| 1352 | |
| 1353 | def _extract_bound_parameters(self, starting_point, result_list): |
| 1354 | param = object.__getattribute__(self, "_param") |
nothing calls this directly
no test coverage detected