(self, a: u16, b: u16)
| 332 | #[inline] |
| 333 | #[must_use] |
| 334 | pub const fn select_u16(self, a: u16, b: u16) -> u16 { |
| 335 | a ^ (self.to_u16_mask() & (a ^ b)) |
| 336 | } |
| 337 | |
| 338 | /// `const fn` helper: return `b` if `self` is [`Choice::TRUE`], otherwise return `a`. |
| 339 | /// |
nothing calls this directly
no test coverage detected