(self, rhs: Choice)
| 70 | #[inline] |
| 71 | #[must_use] |
| 72 | pub const fn xor(self, rhs: Choice) -> Choice { |
| 73 | Self(self.0 ^ rhs.0) |
| 74 | } |
| 75 | |
| 76 | /// Compute the boolean inverse of `self`. |
| 77 | #[inline] |
nothing calls this directly
no outgoing calls
no test coverage detected