| 210 | |
| 211 | internal::tags tag() const noexcept FLPURE {return (internal::tags)(_byte[0] >> 4);} |
| 212 | unsigned tinyValue() const noexcept FLPURE {return _byte[0] & 0x0F;} |
| 213 | |
| 214 | // numbers: |
| 215 | uint16_t shortValue() const noexcept FLPURE {return (((uint16_t)_byte[0] << 8) | _byte[1]) & 0x0FFF;} |
nothing calls this directly
no outgoing calls
no test coverage detected