2024年Clojure调查问卷中分享您的想法!

欢迎!请查看关于页面以获取更多有关该功能的信息。

+3
Transducers

讨论: 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

  • 包括 take-until 的 transducer 参数
  • 包括包含在 transducer 生成测试中

21 答案

0

评论者:gshayban

我认为这已被 CLJ-1906 取代了

0

评论者:gshayban

并且这肯定被 halt-when 取代了

0

评论者:alexmiller

这不是惰性的,但这是使用 halt-when 编写 take-until 的一种方法

(defn take-until [p s] (transduce (halt-when p (fn [r h] (conj r h))) conj [] s))

0

评论者:[email protected]

我想建议:(sequence (halt-when p conj) s),但是sequence不支持在减少值时停止,所以这不行。

0

评论者:alexmiller

是的,halt-when在其他可移植上下文中使用起来有点棘手,除了transduce。

0
参考: https://clojure.atlassian.net/browse/CLJ-1451(由ataggart报告)
...