Transducers.js Round 2 with Benchmarks
11–20 of 22 posts
Re: Transducers.js Round 2 with Benchmarks
#12https://news.ycombinator.com/item?id=8439547
transducers in Python
Re: Transducers.js Round 2 with Benchmarks
#13Re: Transducers.js Round 2 with Benchmarks
#14What problem does this solve? It seems to trade more-verbose code for being more performant in large datasets. That seems reasonable. But otherwise, in day-to-day code why would I use this?
http://gigasquidsoftware.com/blog/2014/09/06/green-eggs-and-...
(note this is in Clojure not JavaScript - but the ideas and usages are the same).
Re: Transducers.js Round 2 with Benchmarks
#15What problem does this solve? It seems to trade more-verbose code for being more performant in large datasets. That seems reasonable. But otherwise, in day-to-day code why would I use this?
Re: Transducers.js Round 2 with Benchmarks
#16I'd be really interested in knowing how it compares against lazy.js: http://danieltao.com/lazy.js/
My thoughts. edit: added lazy.js to the benchmark and transducers.js wins hands down. Lazy also starts way behind _/lodash and only catches up after >50k elements.
https://github.com/swannodette/mori
I would be interested to know how its transducer support and performance compares to transducers.js.
Re: Transducers.js Round 2 with Benchmarks
#17Re: Transducers.js Round 2 with Benchmarks
#18Re: Transducers.js Round 2 with Benchmarks
#19How does this compare to Bacon.js or higland ?
Re: Transducers.js Round 2 with Benchmarks
#20What problem does this solve? It seems to trade more-verbose code for being more performant in large datasets. That seems reasonable. But otherwise, in day-to-day code why would I use this?
I do not know how this compares to a monad/monoid. If anyone can explain, please go ahead. Thx!