Re: [ANN]: clambda 0.1.4 - reducible Java Streams

2018-08-11 Thread Andrew Oberstar
Yep, that helps. Thanks! On Fri, Aug 10, 2018 at 2:42 AM Dimitrios Jim Piliouras < jimpil1...@gmail.com> wrote: > Hi Andrew, > > Well, for the native java Stream case, your 'early-spliterator' has to be > able to split the Spliterator it's wrapping instead of always returning > nil. For the Strea

Re: [ANN]: clambda 0.1.4 - reducible Java Streams

2018-08-10 Thread Dimitrios Jim Piliouras
Hi Andrew, Well, for the native java Stream case, your 'early-spliterator' has to be able to split the Spliterator it's wrapping instead of always returning nil. For the Stream around a seq case, you need to ditch 'iterator-seq', and implement something splitable. See my SeqSpliterator deftype...

Re: [ANN]: clambda 0.1.4 - reducible Java Streams

2018-08-09 Thread Andrew Oberstar
Dimitris, always glad to see people improving Java interop! Nice work! I noticed your mention of my library (ike.cljj) in the readme and was curious about the parallel streams. I haven't had a use case for them in any of my stream work so far, so I didn't think to test it when I wrote ike.cljj. Is

Re: [ANN]: clambda 0.1.4 - reducible Java Streams

2018-08-09 Thread dimitris
Damn! Here is the correct link: https://github.com/jimpil/clambda On 09/08/18 17:03, dimitris wrote: Hi folks, https://github.com/jimpil/clambda /clambda/ is a little library for working with Java Streams from Clojure, and to a lesser extend, for working with Clojure seqs from Java. Paral