RE: r/fold combinef and reducef init values

2019-01-26 Thread Sean Corfield
ody, you're not really alive." -- Margaret Atwood From: clojure@googlegroups.com on behalf of Brian Craft Sent: Saturday, January 26, 2019 2:02:42 PM To: Clojure Subject: Re: r/fold combinef and reducef init values hey Sean -- The ones on the reduce

Re: r/fold combinef and reducef init values

2019-01-26 Thread Brian Craft
> An Architect's View -- http://corfield.org/ > > "If you're not annoying somebody, you're not really alive." > -- Margaret Atwood > > > > *From: *Brian Craft > *Sent: *Friday, January 25, 2019 3:36 PM > *Subject: *r/fold combinef and reducef

RE: r/fold combinef and reducef init values

2019-01-25 Thread Sean Corfield
ect's View -- http://corfield.org/ "If you're not annoying somebody, you're not really alive." -- Margaret Atwood From: Brian Craft<mailto:craft.br...@gmail.com> Sent: Friday, January 25, 2019 3:36 PM Subject: r/fold combinef and reducef init values >From the do

Re: r/fold combinef and reducef init values

2019-01-25 Thread Brian Craft
Looks like it's something that's changed over different clojure releases. On Friday, January 25, 2019 at 3:35:58 PM UTC-8, Brian Craft wrote: > > From the docs: > > r/fold takes a reducible collection and partitions it into groups of > approximately n (default 512) elements. Each group is reduced

r/fold combinef and reducef init values

2019-01-25 Thread Brian Craft
>From the docs: r/fold takes a reducible collection and partitions it into groups of approximately n (default 512) elements. Each group is reduced using the reducef function. The reducef function will be called with no arguments to produce an identity value in each partition. The results of tho