On Nov 21, 12:03 am, samppi <[EMAIL PROTECTED]> wrote:
> I want to mess with sequences of two-sized vectors,

Maybe destructuring will do:
user> (dorun (map (fn [[k v]] (println "Key " k "Value " v)) [ [:a 3]
[:b 2] [:a 1] [:c 0]]))
=>
Key  :a Value  3
Key  :b Value  2
Key  :a Value  1
Key  :c Value  0
nil

--~--~---------~--~----~------------~-------~--~----~
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
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to