A literal string value
(v: Box<str>)
| 421 | |
| 422 | /// A literal string value |
| 423 | pub const fn str(v: Box<str>) -> Self { |
| 424 | Self::Value(AlgebraicValue::String(v), AlgebraicType::String) |
| 425 | } |
| 426 | |
| 427 | /// The [AlgebraicType] of this scalar expression |
| 428 | pub fn ty(&self) -> &AlgebraicType { |