(self, a: u32, b: u32)
| 342 | #[inline] |
| 343 | #[must_use] |
| 344 | pub const fn select_u32(self, a: u32, b: u32) -> u32 { |
| 345 | a ^ (self.to_u32_mask() & (a ^ b)) |
| 346 | } |
| 347 | |
| 348 | /// `const fn` helper: return `b` if `self` is [`Choice::TRUE`], otherwise return `a`. |
| 349 | /// |
nothing calls this directly
no test coverage detected