summaryrefslogtreecommitdiffstats
path: root/docs/content/3.manual/manual.yml
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/3.manual/manual.yml')
-rw-r--r--docs/content/3.manual/manual.yml40
1 files changed, 40 insertions, 0 deletions
diff --git a/docs/content/3.manual/manual.yml b/docs/content/3.manual/manual.yml
index ff9d429a..fec50d0d 100644
--- a/docs/content/3.manual/manual.yml
+++ b/docs/content/3.manual/manual.yml
@@ -690,6 +690,46 @@ sections:
input: '[]'
output: ["null"]
+ - title: `any`
+ body: |
+
+ The filter `any` takes as input an array of boolean values,
+ and produces `true` as output if any of the the elements of
+ the array is `true`.
+
+ If the input is an empty array, `any` returns `false`.
+
+ examples:
+ - program: any
+ input: '[true, false]'
+ output: ["true"]
+ - program: any
+ input: '[false, false]'
+ output: ["false"]
+ - program: any
+ input: '[]'
+ output: ["false"]
+
+ - title: `all`
+ body: |
+
+ The filter `all` takes as input an array of boolean values,
+ and produces `true` as output if all of the the elements of
+ the array are `true`.
+
+ If the input is an empty array, `all` returns `true`.
+
+ examples:
+ - program: all
+ input: '[true, false]'
+ output: ["false"]
+ - program: all
+ input: '[true, true]'
+ output: ["true"]
+ - program: all
+ input: '[]'
+ output: ["true"]
+
- title: `range`
body: |