Is it intended behavior to get this exception :
class clojure.lang.Keyword cannot be cast to class java.util.Map$Entry
on this piece of code :
(def a [["Active" :Transit-RLC "Active"]])
(->> a
(transduce
(comp
(map drop-last)
(map reverse))
conj [])
(into {}))
changing the transducer to (map (-> [(second %) (first %)])
solves the issue.
Thanks