(self, other: Self)
| 756 | } |
| 757 | |
| 758 | fn rotr(self, other: Self) -> ValueResult<Self> { |
| 759 | let amt = other.convert(ValueConversionKind::Exact(types::I32))?; |
| 760 | binary_match!(rotate_right(&self, &amt); [I8, I16, I32, I64, I128]; [i8, i16, i32, i64, i128]; rhs: I32,u32) |
| 761 | } |
| 762 | |
| 763 | fn and(self, other: Self) -> ValueResult<Self> { |
| 764 | bitop!(&(self, other)) |
no test coverage detected