Just a friendly heads up that development on Meander may slow down a bit this week as I take a moment to catch my breath. As some of you may know, Meander was elected to receive funding from Clojurists Together for Q3 and, for the past three months, I’ve been focused entirely on the project. That being said, I will still be releasing a patch sometime this week that adds support for utilizing cata
on the substitution side of rewrite
and rewrites
.
@noprompt thanks for the hard work!!
and, not to be That Guy, but ((r/some-bu (r/pipe (r/pred coll?) #(apply + %))) [1 [2 3]]) ;=> [1 5]
, should it be 6
?
LOL
Yeah, that seems like it should be 6
.
((r/bottom-up (r/branch (r/pred coll?)
#(apply + %)
identity))
[1 [2 3]])
;; => 6