You've probably gotten nearly all of the performance you're going to get 
out of it without resorting to mutability, perhaps by threading a 
StringBuilder instance through the whole affair, or at least accumulating 
not a string (via a sequence of "str" calls) but a coll and doing a big 
"apply str" over that at the base case: (assoc a (apply str ks) m), which 
amounts to the same thing (should end up using a single StringBuilder under 
the hood to assemble the entire string in one pass, without creating a 
temporary String object at each intermediate level).

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to