Re: non-seq collections

2008-12-21 Thread Meikel Brandmeyer
Hi Mark, Am 21.12.2008 um 16:51 schrieb Mark Volkmann: Until this morning I was under the impression that ALL Clojure collections are sequences. Now I understand (from the screencast "Clojure Data Structures - Part 2") that vectors and maps are not and that you need to call "seq" on them to get

Re: non-seq collections

2008-12-21 Thread Randall R Schulz
On Sunday 21 December 2008 07:51, Mark Volkmann wrote: > Until this morning I was under the impression that ALL Clojure > collections are sequences. Sequences are views of collections (sequential ones, if you can believe it!). All collections can be sequenced, but they are not to be equated. >

non-seq collections

2008-12-21 Thread Mark Volkmann
Until this morning I was under the impression that ALL Clojure collections are sequences. Now I understand (from the screencast "Clojure Data Structures - Part 2") that vectors and maps are not and that you need to call "seq" on them to get a sequence representation. What are some situations where