We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e44e8d commit 03f0e2dCopy full SHA for 03f0e2d
examples/all.janet
@@ -0,0 +1,8 @@
1
+(all pos? [1 2 3]) # -> true
2
+(all pos? [1 2 -3]) # -> false
3
+
4
+(all pos? []) # -> true
5
+(all neg? []) # -> true
6
7
+(all truthy? [1 2 3]) # -> true
8
+(all truthy? [1 2 nil]) # -> false
0 commit comments