Vesa Karvonen

Results 126 comments of Vesa Karvonen

Build of FSharp.Data.GraphQL seems to be failing at the moment. How can the project be built and the benchmark run?

I did a git clone and checked out dev and tried to run build.sh from OS X, build.cmd from Windows, and tried to build Release from VS 2015. Both build...

FYI, I managed to compile and run the benchmarks. So, I'll take a closer look at the code when I get time. Based on my previous brief look at the...

In the case of an infix symbol, the arguments should be flipped: ```diff -val ( ): Job 'y> -> Job 'y> -> Job ``` Hmm... I think there are good...

A few random thoughts. I believe there are use cases for all of * "ordered sequential" (generalization of current ``), * "unordered parallel" (generalization of current ``), and * "non-deterministic...

Hmm... This does look like a potential bug. Perhaps in `Stream.joinWith`. ATM, I'm a bit too busy with other projects to look into this in detail.

I think that is correct. Consider the difference between [`nil`](http://hopac.github.io/Hopac/Hopac.html#def:val%20Hopac.Stream.nil) and [`never`](http://hopac.github.io/Hopac/Hopac.html#def:val%20Hopac.Stream.never). More to the point, `never` is not the identity element of `merge`.

There could be [some mechanism](http://hopac.github.io/Hopac/Hopac.html#def:val Hopac.Scheduler.Global.setCreate) to specify parameters such as the number of threads to use.

@neoeinstein Thanks for the note! Here is some more info why I'd like to remove schedulers. I'm not entirely satisfied with the current design/implementation of the Scheduler concept. In particular,...

Ideally such workarounds would be mostly unneeded and it is possible to change scheduling to mostly eliminate the need. That is actually the reason why I'd like to remove the...