On Wednesday, November 7, 2012 2:29:06 PM UTC-5, Jim foo.bar wrote: > > This is exactly the approach I'm taking...'doall' retains the head so > with massive files it will break...'doseq' will not. at least this is my > understanding... >
That is correct. `doall` retains the head because it returns the entire sequence. `doseq` and `dorun` do not retain the head, both return nil. -S -- 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
