(self, rhs: Self)
| 62 | |
| 63 | #[inline(always)] |
| 64 | fn bitand(self, rhs: Self) -> Self::Output { |
| 65 | Self(unsafe { _mm256_and_si256(self.0, rhs.0) }) |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | impl Not for SpongeComputeSlice { |
nothing calls this directly
no outgoing calls
no test coverage detected