Getter and setter for limit mode.
| 71 | |
| 72 | /// Getter and setter for limit mode. |
| 73 | bool hasMax() const noexcept { return static_cast<uint8_t>(Type) & 0x01U; } |
| 74 | bool isShared() const noexcept { return static_cast<uint8_t>(Type) & 0x02U; } |
| 75 | bool is32() const noexcept { return static_cast<uint8_t>(Type) < 0x04U; } |
| 76 | bool is64() const noexcept { return !is32(); } |
no outgoing calls
no test coverage detected