File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -80,6 +80,10 @@ pub fn function_match(function_name: &str) -> Option<BuiltinFunction> {
8080 "length" | "len" => Some ( strings:: length:: length) ,
8181 "contains" | "has" => Some ( strings:: contains:: contains) ,
8282 "slice" | "substring" => Some ( strings:: slice:: slice) ,
83+ "charat" => Some ( strings:: char_at:: char_at) ,
84+ "toupper" | "uppercase" => Some ( strings:: to_upper:: to_upper) ,
85+ "tolower" | "lowercase" => Some ( strings:: to_lower:: to_lower) ,
86+ "trim" => Some ( strings:: trim:: trim) ,
8387 "insert" | "push" => Some ( list:: insert:: insert) ,
8488 "get" | "at" => Some ( list:: get:: get) ,
8589 "pop" => Some ( list:: pop:: pop) ,
Original file line number Diff line number Diff line change 1+ pub mod char_at;
12pub mod contact;
23pub mod contains;
34pub mod length;
45pub mod repeat;
56pub mod slice;
7+ pub mod to_lower;
8+ pub mod to_upper;
9+ pub mod trim;
You can’t perform that action at this time.
0 commit comments