(self, rhs: u32)
| 89 | |
| 90 | #[inline(always)] |
| 91 | fn shl(self, rhs: u32) -> Self::Output { |
| 92 | Self(unsafe { _mm256_sll_epi64(self.0, _mm_set1_epi64x(rhs as i64)) }) |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | impl Default for SpongeComputeSlice { |
nothing calls this directly
no outgoing calls
no test coverage detected