Added docs

This commit is contained in:
Mike Farah
2023-03-18 14:51:31 +11:00
parent d8324dee0d
commit fdce8fce13
7 changed files with 51 additions and 0 deletions
@@ -0,0 +1,5 @@
# Divide
Divide behaves differently according to the type of the LHS:
* strings: split by the divider
* number: arithmetic division
@@ -0,0 +1,4 @@
# Filter
Filters an array (or map values) by the expression given. Equivalent to doing `map(select(exp))`.
@@ -0,0 +1,3 @@
# Modulo
Arithmetic modulo operator, returns the remainder from dividing two numbers.