A literal boolean value
(v: bool)
| 416 | |
| 417 | /// A literal boolean value |
| 418 | pub const fn bool(v: bool) -> Self { |
| 419 | Self::Value(AlgebraicValue::Bool(v), AlgebraicType::Bool) |
| 420 | } |
| 421 | |
| 422 | /// A literal string value |
| 423 | pub const fn str(v: Box<str>) -> Self { |