2020-02-08 20:32:10 -05:00
|
|
|
use std::collections::BTreeMap;
|
2020-02-02 21:09:29 -05:00
|
|
|
|
2020-02-08 20:32:10 -05:00
|
|
|
use super::Builtin;
|
2020-02-08 21:19:54 -05:00
|
|
|
use crate::common::QuoteKind;
|
2020-02-08 20:38:37 -05:00
|
|
|
use crate::units::Unit;
|
|
|
|
use crate::value::{Number, Value};
|
2020-02-08 20:32:10 -05:00
|
|
|
|
|
|
|
pub(crate) fn register(f: &mut BTreeMap<String, Builtin>) {
|
|
|
|
decl!(f "to-upper-case", |args, _| {
|
|
|
|
let s: &Value = arg!(args, 0, "string");
|
|
|
|
match s.eval() {
|
|
|
|
Value::Ident(i, q) => Some(Value::Ident(i.to_ascii_uppercase(), q)),
|
|
|
|
_ => todo!("")
|
|
|
|
}
|
|
|
|
});
|
|
|
|
decl!(f "to-lower-case", |args, _| {
|
|
|
|
let s: &Value = arg!(args, 0, "string");
|
|
|
|
match s.eval() {
|
|
|
|
Value::Ident(i, q) => Some(Value::Ident(i.to_ascii_lowercase(), q)),
|
|
|
|
_ => todo!("")
|
|
|
|
}
|
|
|
|
});
|
2020-02-08 20:38:37 -05:00
|
|
|
decl!(f "str-length", |args, _| {
|
|
|
|
let s: &Value = arg!(args, 0, "string");
|
|
|
|
match s.eval() {
|
|
|
|
Value::Ident(i, _) => Some(Value::Dimension(Number::from(i.len()), Unit::None)),
|
|
|
|
_ => todo!("")
|
|
|
|
}
|
|
|
|
});
|
2020-02-08 21:19:54 -05:00
|
|
|
decl!(f "quote", |args, _| {
|
|
|
|
let s = arg!(args, 0, "string").eval();
|
|
|
|
match s {
|
|
|
|
Value::Ident(i, _) => Some(Value::Ident(i, QuoteKind::Double)),
|
|
|
|
_ => todo!("")
|
|
|
|
}
|
|
|
|
});
|
|
|
|
decl!(f "unquote", |args, _| {
|
|
|
|
Some(arg!(args, 0, "string").eval().unquote())
|
|
|
|
});
|
2020-02-08 20:32:10 -05:00
|
|
|
}
|