(self, rhs: Self)
| 30 | |
| 31 | #[inline(always)] |
| 32 | fn bitor(self, rhs: Self) -> Self::Output { |
| 33 | Self(unsafe { _mm256_or_si256(self.0, rhs.0) }) |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | impl BitXor<Self> for SpongeComputeSlice { |
nothing calls this directly
no outgoing calls
no test coverage detected