(&self)
| 796 | /// Asserts: the `kind()` is [Kind::Dimension] or [Kind::Number]. |
| 797 | #[inline] |
| 798 | pub fn value(&self) -> f32 { |
| 799 | debug_assert!(matches!(self.kind(), Kind::Number | Kind::Dimension)); |
| 800 | f32::from_bits(self.1) |
| 801 | } |
| 802 | |
| 803 | /// Returns the [Whitespace]. |
| 804 | /// |
no outgoing calls