(self, rhs: Self)
| 99 | type Output = Self; |
| 100 | |
| 101 | fn shl(self, rhs: Self) -> Self::Output { |
| 102 | binary_expr(self, Operator::BitwiseShiftLeft, rhs) |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | /// Support `<expr> >> <expr>` fluent style |
nothing calls this directly
no test coverage detected