(self, rhs: u32)
| 80 | |
| 81 | #[inline(always)] |
| 82 | fn shr(self, rhs: u32) -> Self::Output { |
| 83 | Self(unsafe { _mm256_srl_epi64(self.0, _mm_set1_epi64x(rhs as i64)) }) |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | impl Shl<u32> for SpongeComputeSlice { |
nothing calls this directly
no outgoing calls
no test coverage detected