Re: What's the difference between a "sequence" and a "seq"?

2013-04-25 Thread Rostislav Svoboda
+100. Thx a lot! On 25 April 2013 13:45, fb wrote: > the conceptional differences between collection and sequences are confusing > quite a bit. > A nice wrap up by Tim McCormack can be found here: > > http://www.brainonfire.net/files/seqs-and-colls/main.html > (via Sean Corfield) > > -fb > > Am S

Re: What's the difference between a "sequence" and a "seq"?

2013-04-25 Thread fb
the conceptional differences between collection and sequences are confusing quite a bit. A nice wrap up by Tim McCormack can be found here: http://www.brainonfire.net/files/seqs-and-colls/main.html (via Sean Corfield) -fb Am Sonntag, 31. März 2013 14:58:15 UTC+2 schrieb Alice: > > On http://c

What's the difference between a "sequence" and a "seq"?

2013-03-31 Thread Alice
On http://clojure.org/lazier, Changed: (rest aseq) - returns a logical collection (Sequence) of the remaining items, not (necessarily) a seq rest simply calls RT.more and here's the code of RT.more: static public ISeq more(Object x){ if(x instanceof ISeq) return ((ISeq) x).more();