Geir Fiksdal

Results 3 issues of Geir Fiksdal

F# Discriminated Unions with 4 cases or more fail when deserializing cases other than the first one. Consider the following type ```fsharp [] type QuadrupleCaseDU = | Case1 of string...

Needs: triage :mag:

When using `Unit` in Grain interfaces defined in F#, the Silo startup fails with the message `Orleans.Serialization.CodecNotFoundException Could not find a codec for type Microsoft.FSharp.Core.Unit.` We have previously gotten around...

I needed `TaskSeq.chunkBySize` so I took a stab 🗡️ Fixes #258 Inspired by [AsyncSeq.bufferByCount](https://github.com/fsprojects/FSharp.Control.AsyncSeq/blob/main/src/FSharp.Control.AsyncSeq/AsyncSeq.fs#L1400C2-L1415C35) and [Seq.chunkBySize](https://github.com/dotnet/fsharp/blob/main/src/FSharp.Core/seq.fs#L1805) I have tried to match the style and structure of the repo, but let...