Welcome! Please see the About page for a little more info on how this works.

0 votes
in Clojure by

Vector currently contains a specialized implementation of the folding algorithm "split the collection in half until the pieces are small enough". The attached commit lifts out the general strategy so that it can be reused by other collection types amenable to splitting.

CLJ-993 depends on this patch, as it uses the new fold-by-halves function.

2 Answers

0 votes
by

Comment made by: jafingerhut

clj-1045-fold-by-halves-patch-v2.txt dated Jan 25 2013 is identical to fold-by-halves.patch dated Aug 18 2012, except it updates one line of context changed by a recent commit to Clojure master.

0 votes
by
Reference: https://clojure.atlassian.net/browse/CLJ-1045 (reported by amalloy)
...