欢迎!请查看关于页面以获取更多有关该功能的信息。
讨论: https://groups.google.com/d/topic/clojure-dev/NaAuBz6SpkY/discussion
当我想使用 (take-while pred coll) 时,它会出现在那里,但需要包括第一个满足 (pred item) 为假的元素。
(take-while pos? [1 2 0 3]) => (1 2) (take-until zero? [1 2 0 3]) => (1 2 0)
补丁: clj-1451.patch
评论者:gshayban
我认为这已被 CLJ-1906 取代了
并且这肯定被 halt-when 取代了
halt-when
评论者:alexmiller
这不是惰性的,但这是使用 halt-when 编写 take-until 的一种方法
(defn take-until [p s] (transduce (halt-when p (fn [r h] (conj r h))) conj [] s))
评论者:[email protected]
我想建议:(sequence (halt-when p conj) s),但是sequence不支持在减少值时停止,所以这不行。
(sequence (halt-when p conj) s)
是的,halt-when在其他可移植上下文中使用起来有点棘手,除了transduce。