hyPiRion <[email protected]> writes: > If you really need nth for your hash map in the way you describe and > don't need to remove elements from the map, then I suggest creating a > new data structure with a vector and a hash map.
There's the ordered lib on clojars which provides sets and maps that keep their insertion (or conj/assoc) order using exactly what you suggest. Bye, Tassilo -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en
