You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/functions.rs
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -407,6 +407,7 @@ expr_fn!(cosh, num);
407
407
expr_fn!(degrees, num);
408
408
expr_fn!(decode, input encoding);
409
409
expr_fn!(encode, input encoding);
410
+
expr_fn!(ends_with, string suffix,"Returns true if string ends with suffix.");
410
411
expr_fn!(exp, num);
411
412
expr_fn!(factorial, num);
412
413
expr_fn!(floor, num);
@@ -473,7 +474,7 @@ expr_fn!(
473
474
"Splits string at occurrences of delimiter and returns the n'th field (counting from one)."
474
475
);
475
476
expr_fn!(sqrt, num);
476
-
expr_fn!(starts_with,arg1 arg2,"Returns true if string starts with prefix.");
477
+
expr_fn!(starts_with,string prefix,"Returns true if string starts with prefix.");
477
478
expr_fn!(strpos, string substring,"Returns starting index of specified substring within string, or zero if it's not present. (Same as position(substring in string), but note the reversed argument order.)");
0 commit comments