(&self)
| 736 | /// The [Token] is a [Kind::Dimension] or [Kind::Number] and is an integer - i.e. it has no `.`. |
| 737 | #[inline] |
| 738 | pub const fn is_int(&self) -> bool { |
| 739 | self.kind_bits() & 0b1110 == 0b0100 && !self.third_flag() |
| 740 | } |
| 741 | |
| 742 | /// The [Token] is a [Kind::Dimension] or [Kind::Number] and is a float - i.e. it has decimal places. This will be |
| 743 | /// `true` even if the decimal places are 0. e.g. `0.0`. |