(self, a: u8, b: u8)
| 322 | #[inline] |
| 323 | #[must_use] |
| 324 | pub const fn select_u8(self, a: u8, b: u8) -> u8 { |
| 325 | a ^ (self.to_u8_mask() & (a ^ b)) |
| 326 | } |
| 327 | |
| 328 | /// `const fn` helper: return `b` if `self` is [`Choice::TRUE`], otherwise return `a`. |
| 329 | /// |
nothing calls this directly
no test coverage detected