Iddan Aaronsohn

Results 243 comments of Iddan Aaronsohn

I think it can be useful as part of this package

Keep in mind the common use case for servers is one thread locally, multiple threads deployed.

Is this still relevant?

Can this be added to the README?

Maybe walt should have it's own Flowtype

What about `continue`? And what is planned for generators and iterators for the long run?

ReasonML docs are great example IMO

Why using the `lambda` keyword? In TS & Flow the syntax is: ```typescript type Closure = () => i32; ```

I assumed, but I think that introducing a new keyword is problematic. Maybe this can be solved with a special generic?

You can mark external functions __explicitly__: ```diff -type Log = (i32) => void; +type Log = External void>; ```