| 37 | /// ``` |
| 38 | #[derive(Debug, Copy, Clone, PartialOrd, Ord, PartialEq, Eq, Hash)] |
| 39 | pub struct Integer<'heap> { |
| 40 | value: Symbol<'heap>, |
| 41 | } |
| 42 | |
| 43 | impl<'heap> Integer<'heap> { |
| 44 | /// Creates a new integer literal without checking the value. |
no outgoing calls