(self)
| 771 | /// Asserts: the `kind()` is [Kind::Number]. |
| 772 | #[inline] |
| 773 | pub const fn with_sign_required(self) -> Token { |
| 774 | debug_assert!(self.kind_bits() == Kind::Number as u8); |
| 775 | Token(self.0 | (1 << 31), self.1) |
| 776 | } |
| 777 | |
| 778 | /// If the [Token] is a [Kind::Dimension] or [Kind::Number] then this returns the amount of characters used to |
| 779 | /// represent this number in the underlying source text. Numbers may be inefficiently encoded in the source text, |