(&self)
| 658 | /// Check if the TF second-upper-most bit is set. |
| 659 | #[inline(always)] |
| 660 | const fn second_flag(&self) -> bool { |
| 661 | self.0 >> 30 & 0b1 == 1 |
| 662 | } |
| 663 | |
| 664 | /// Check if the TF third-upper-most bit is set. |
| 665 | #[inline(always)] |
no outgoing calls
no test coverage detected