1
0
mirror of https://github.com/janet-lang/janet synced 2024-07-01 09:33:15 +00:00

Improve documentation for the all function.

This commit is contained in:
harryvederci 2022-12-09 11:16:42 +00:00 committed by GitHub
parent 373cb444fe
commit 846123ecab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2065,8 +2065,9 @@
ret) ret)
(defn all (defn all
``Returns true if all `xs` are truthy, otherwise the result of first ``Returns true if `(pred item)` returns a truthy value for every item in `xs`.
falsey predicate value, `(pred x)`.`` Otherwise, returns the first falsey `(pred item)` result encountered.
Returns true if `xs` is empty.``
[pred xs] [pred xs]
(var ret true) (var ret true)
(loop [x :in xs :while ret] (set ret (pred x))) (loop [x :in xs :while ret] (set ret (pred x)))