kerams

Results 190 comments of kerams

Another one. To reproduce it, get [this PR](https://github.com/Zaid-Ajaj/Fable.Remoting/pull/323), `dotnet tool restore`, open the solution and try to build Fable.Remoting.Giraffe in Release. `warning FS3511: This state machine is not statically compilable....

Yup, works with optimizations, but tailcalls disabled. Don't know about 5, don't have it installed, sorry.

I see the problem in your console dump :) ``` Byte - 53, in total 1 [|146uy; 1uy; 0uy|] Byte - 53, in total 1 [|146uy; 1uy; 176uy|] Byte -...

> stackalloc is just "dragons beware" in F#. It gives a warning saying that. > Uses of this construct may result in the generation of unverifiable .NET IL code. Right,...

This might be a bit orthogonal, but I really like that for some code fixes ReSharper also includes "Why is ReSharper suggesting this?" in the lightbulb tooltip. Clicking on that...

How much would the thread pool switch hurt scenarios where the awaited value is immediately available? ```fsharp backgroundTask { // ... stuff let! result = ValueTask.FromResult "blah" // ... stuff...

https://github.com/Zaid-Ajaj/Fable.Remoting/pull/323

@Thorium, if it's performance you're after, I suggest you don't upgrade just yet. On my machine a single call is about 0.5ms slower than before (and this is tasks only,...

To clarify, what exactly is approved? Just adding `#nowarn restore` or aligning directives with C#?

Implementation-wise I assume this would mean using `TOp.IntegerForLoop` for int64 and bigint (though to be fair I don't know in what world you'd ever expect to loop more than `Int64.MaxValue`...