Results 29 comments of Maciej Sitko

What is wrong with how F# solves async/await for example? https://docs.microsoft.com/en-us/dotnet/fsharp/tutorials/asynchronous-and-concurrent-programming/async Like: ```ocaml let fetchHtmlAsync = url => async { let uri = Uri(url); use webClient = new WebClient(); let!...

@wiltonlazary I think if you documented it with extended README for simple API usage that would help

I think it's actually quite well known in the JS world, for example `redux-saga` is like CSP with a single channel, and Node has a very popular library `co`. Mapping...

Computation expressions would be great as they are **incredibly** clean in F#. Also, try/catch in such implementation becomes much easier to reason about.

TS switch only because of [Mithril's support](https://github.com/MithrilJS/mithril.d.ts) - it's advantageous. I only suggested native ES modules as it's an opportunity - Mithril doesn't have any dependencies and it is totally...

It doesn't have to be automatically generated I guess. That could be a separate feature ticket. Syntax would just have to align with current browser capabilities. Hence, snippets with native...

Yeah @yoshuawuyts made some steps to extract it along with pre-optimisations that can be applied to nanomorph, but the newborn put me off the track :) Will probably progress &...

Problems might be with numbers of pre-optimisations and we need quite a bit of them, that will appear in the forthcoming performance tests. DOM node getters and setters should be...

Myers is a groundwork for a lot of the (performant) other algorithms including some tree based diffs. Its also proven to do good work in many libraries that operate on...

@blahah or anyone, I struggle to find a whole lot of time lately, so I'm progressing slowly. Although I have good suites and understanding how to make it work well,...