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.
2 parents 0574fdf + 03f0e2d commit 42d6b08Copy full SHA for 42d6b08
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