(self)
| 71 | |
| 72 | #[inline(always)] |
| 73 | fn not(self) -> Self::Output { |
| 74 | Self(unsafe { _mm256_xor_si256(self.0, _mm256_set1_epi64x(-1)) }) |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | impl Shr<u32> for SpongeComputeSlice { |
nothing calls this directly
no outgoing calls
no test coverage detected