Is it possible to use :while to shortcut a for macro when a certain number of 
yiels have happened?

e.g. (for [x (range 1000) :when (= (rem x) 1) :while (number of yields <= 10)]

so i want only the first 10 results.

Or should I just use (take 10 ) on the for ?

Michael

--~--~---------~--~----~------------~-------~--~----~
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 
clojure+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to