(self, a: u128, b: u128)
| 362 | #[inline] |
| 363 | #[must_use] |
| 364 | pub const fn select_u128(self, a: u128, b: u128) -> u128 { |
| 365 | a ^ (self.to_u128_mask() & (a ^ b)) |
| 366 | } |
| 367 | |
| 368 | // |
| 369 | // Output conversion methods |
nothing calls this directly
no test coverage detected