Albert Du
Albert Du
implements [RFC FS-1125](https://github.com/fsharp/fslang-design/blob/main/RFCs/FS-1125-print-println-functions.md), fsharp/fslang-suggestions#1092 Adds print and println functions with examples.
#938 #9548 Optimizes `for i in n .. step .. m do` il code gen to avoid allocation. Throws ArgumentException at runtime if step is zero. Replicates logic of OperatorIntrinsics.RangeInt32...
It would be nice to be able to query a database using linq without directly writing sql. The following syntax would be possible: ```fsharp open FSharp.CosmosDb open Newtonsoft.Json type User...
#65 Adds an operation for linq support using an extended version of the FSharp.Linq.QueryBuilder `query` computational expression called `cosmosQuery`. `CosmosQueryBuilder` extends the standard query syntax by mapping F# functions to...
Hi, The doc for `StreamReader.Read(Span)` claims that it'll throw an IOException if ["the number of characters read from the stream is larger than the buffer length."]( https://learn.microsoft.com/en-us/dotnet/api/system.io.streamreader.read?view=net-8.0#system-io-streamreader-read(system-span((system-char)))) This is not...