mirror of
https://github.com/janet-lang/janet
synced 2024-11-25 09:47:17 +00:00
Update several docstrings.
This commit is contained in:
parent
44e752d737
commit
d334f070a3
@ -703,8 +703,7 @@
|
|||||||
(if (= i nil) nil (get ind i)))
|
(if (= i nil) nil (get ind i)))
|
||||||
|
|
||||||
(defn take-until
|
(defn take-until
|
||||||
"Given a predicate, take only elements from an indexed type that satisfy
|
"Same as (take-while (complement pred) ind)."
|
||||||
the predicate, and abort on first failure. Returns a new array."
|
|
||||||
[pred ind]
|
[pred ind]
|
||||||
(def i (find-index pred ind))
|
(def i (find-index pred ind))
|
||||||
(if i
|
(if i
|
||||||
@ -712,13 +711,13 @@
|
|||||||
ind))
|
ind))
|
||||||
|
|
||||||
(defn take-while
|
(defn take-while
|
||||||
"Same as (take-until (complement pred) ind)."
|
"Given a predicate, take only elements from an indexed type that satisfy
|
||||||
|
the predicate, and abort on first failure. Returns a new array."
|
||||||
[pred ind]
|
[pred ind]
|
||||||
(take-until (complement pred) ind))
|
(take-until (complement pred) ind))
|
||||||
|
|
||||||
(defn drop-until
|
(defn drop-until
|
||||||
"Given a predicate, remove elements from an indexed type that satisfy
|
"Same as (drop-while (complement pred) ind)."
|
||||||
the predicate, and abort on first failure. Returns a new array."
|
|
||||||
[pred ind]
|
[pred ind]
|
||||||
(def i (find-index pred ind))
|
(def i (find-index pred ind))
|
||||||
(if i
|
(if i
|
||||||
@ -726,7 +725,8 @@
|
|||||||
@[]))
|
@[]))
|
||||||
|
|
||||||
(defn drop-while
|
(defn drop-while
|
||||||
"Same as (drop-until (complement pred) ind)."
|
"Given a predicate, remove elements from an indexed type that satisfy
|
||||||
|
the predicate, and abort on first failure. Returns a new array."
|
||||||
[pred ind]
|
[pred ind]
|
||||||
(drop-until (complement pred) ind))
|
(drop-until (complement pred) ind))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user