Remove no-longer-used transient-all-select|transform

This commit is contained in:
Alex Engelberg 2016-06-05 21:47:44 -07:00
parent cb0dc261cf
commit 25ba21d9ee

View file

@ -778,26 +778,6 @@
(let [res (next-fn [])] (let [res (next-fn [])]
(reduce conj! structure res)))) (reduce conj! structure res))))
#+clj
(defn transient-all-select
[structure next-fn]
(into [] (r/mapcat #(next-fn (nth structure %))
(range (count structure)))))
#+cljs
(defn transient-all-select
[structure next-fn]
(into []
(r/mapcat #(next-fn (nth structure %)))
(range (count structure))))
(defn transient-all-transform!
[structure next-fn]
(reduce (fn [structure i]
(assoc! structure i (next-fn (nth structure i))))
structure
(range (count structure))))
(defn extract-basic-filter-fn [path] (defn extract-basic-filter-fn [path]
(cond (fn? path) (cond (fn? path)
path path