-
See https://github.com/SwensenSoftware/unquote/pull/166#issuecomment-2039170789 TL;DR could the FSharp.Core dep be lowered back down to 6.0.7 (or lower) please?
I'll make a PR soon, unless this is …
-
We've removed the tail recursion because it was hard to consolidate it into `yield!` (it was instead done with `return!`, which has no place in `taskSeq`).
However, today I helped someone with some…
-
Hi,
I have generated a client for a api. Using this code I call a function on an entity.
var wo = _client.JtTaskSet.Where(x => x.TaskSeq == woNo).FirstOrDefault();
var qr…
-
When you call `.WithCancellation(cancellationToken)` on `IAsyncEnumerable` which is not currently supported.
So that this code does not work
``` F#
static member ToFlatListAsync, [] cancellat…
-
I have a use case where I may need to scan a table for millions of items. I am unable to allocate an array that large. What I really want is to be able to operate on it like a stream. Would you acc…
-
Hi.
Thanks for working on this. I have been exploring this repository since I wanted to do something similar, and I noticed that even when manually passing in a cancellation token, it is not direct…
-
I'd like to turn `Async` to `AsyncSeq`
While this works
```FSharp
asyncSeq {
for item in items -> item
}
```
`yield!` version does not:
```FSharp
asyncSeq {
yield! items
}
```
…
-
Currently, we connect support "**topics**", we use , to separate different topic. The new UI will send these as array for instead for better user experience.
We should convert this array to string…
-
Computation expressions like task, seq, taskSeq, async, coroutine often need to support tailcalls in the computational structure, e.g.
```fsharp
let rec f n =
seq {
...do something…
dsyme updated
9 months ago
-
Logging this as a placeholder - it's more of a nice to have than something that I'd be personally investing the time to execute on at present.
In Equinox and Propulsion, I've recently transitioned …