Re: Bug in clojure.core/take lazy seq?

2016-10-25 Thread Zalan Barczal
Indeed you're right, the drop lazy-seq prevents the lookahead. Thanks Meikel for the thoughtful response! On Tuesday, October 25, 2016 at 2:36:26 AM UTC-4, Meikel Brandmeyer (kotarak) wrote: > > In fact, (doall (take (count t) t)) actually realises t completely. But > not because of the doall

[ANN] Avi 0.1.9 - The Splits

2016-10-25 Thread Jason Felice
After a couple looong periods with a lot of work, and a few also long periods of looking askance at the project with fear and being intimidated, *splits are here!!:* :sp, :vsp, :e, h, j, k, l, and :q now quits one split until there are none left. Special thanks to *Arun S L*, who implemented: ,

core.match interactive tutorial - with KLIPSE

2016-10-25 Thread Yehonathan Sharvit
http://blog.klipse.tech/clojure/2016/10/25/core-match.html -- 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 Note that posts from new members are moderated - please be patient with your

[JOB] clojure fintech NUBANK

2016-10-25 Thread Thaís Starling
[JOB] Fintech - NUBANK Engineer (Clojure) https://nubank.workable.com CURRENT OPENINGS Software Engineer São Paulo, Brazil · engineering Systems Engineer (SRE/DevOps) Sao Paulo, São Paulo, Brazil · engineering Android - Senior Mobile Software Engineer São Paulo, Brazil · engineering iOS -

[JOB] Fintech Clojure - Nubank

2016-10-25 Thread Thaís Starling
https://nubank.workable.com -- 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 Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from

[Ann] Tempura, a Clj+Cljs i18n translations lib with support for React

2016-10-25 Thread Peter Taoussanis
Hi folks! So this is the 1st of 4 libs I’ve been meaning to publish for forever. Available at: https://github.com/ptaoussanis/tempura Other libs (as usual) at: https://www.taoensso.com/clojure Enjoy, cheers! :-) \- Peter Taoussanis, [@ptaoussanis](https://twitter.com/ptaoussanis) -- You

Re: Bug in clojure.core/take lazy seq?

2016-10-25 Thread Meikel Brandmeyer (kotarak)
However, the drop+ does not stop in case the input sequence is exhausted. So more waste there... -- 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 Note that posts from new members are

Re: Bug in clojure.core/take lazy seq?

2016-10-25 Thread Meikel Brandmeyer (kotarak)
In fact, (doall (take (count t) t)) actually realises t completely. But not because of the doall or take, but because of the count. The problem is not take, it's the take-while of split-with, which is the trouble. You know that the input is 50 items long. take-while does not. It has to check