| 23 | /// ``` |
| 24 | #[derive(Debug, Copy, Clone, PartialOrd, Ord, PartialEq, Eq, Hash)] |
| 25 | pub struct String<'heap> { |
| 26 | value: Symbol<'heap>, |
| 27 | } |
| 28 | |
| 29 | impl<'heap> String<'heap> { |
| 30 | /// Creates a new string literal with the given value. |
no outgoing calls