(&self, op_slot: PyNumberTernaryOp)
| 579 | } |
| 580 | |
| 581 | pub fn left_ternary_op(&self, op_slot: PyNumberTernaryOp) -> Option<PyNumberTernaryFunc> { |
| 582 | use PyNumberTernaryOp::*; |
| 583 | match op_slot { |
| 584 | Power => self.power.load(), |
| 585 | InplacePower => self.inplace_power.load(), |
| 586 | } |
| 587 | } |
| 588 | |
| 589 | pub fn right_ternary_op(&self, op_slot: PyNumberTernaryOp) -> Option<PyNumberTernaryFunc> { |
| 590 | use PyNumberTernaryOp::*; |
no test coverage detected