Re: Streams and Observables

2015-05-08 Thread Tab Atkins Jr.
On Fri, May 8, 2015 at 2:00 PM, Domenic Denicola wrote: > See my response when you asked this question a month ago: > https://esdiscuss.org/topic/promises-vs-streams#content-5 Especially, follow > the links. Yes, please do not re-ask questions unless there's some reason to assume the answer has

RE: Streams and Observables

2015-05-08 Thread Domenic Denicola
See my response when you asked this question a month ago: https://esdiscuss.org/topic/promises-vs-streams#content-5 Especially, follow the links. To correct a few misconceptions: > streams analogous to a list of values there are many things in the async/plural category, not just streams > Asy

Streams and Observables

2015-05-08 Thread Boopathi Rajaa
We have, synchronous primitives: values and list of values(arrays) synchronous things that give out these primitives: functions and generators asynchronous primitives: promises analogous to values streams analogous to a list of values Asynchronous things that give out these primitives: Async

Re: Subclassing Function

2015-05-08 Thread Jason Orendorff
On Thu, May 7, 2015 at 3:25 PM, Allen Wirfs-Brock wrote: > On May 7, 2015, at 12:50 PM, Francisco Tolmasky wrote: >> In the existing implementations I’ve tried, it appears I can’t do this: >> >> class SuperFunction extends Function { } > > Nope, it's supposed to work. Agreed. We're working on it