-
An examples directory which some implementations of common usages would be great.
For example, I was trying to implement get a basic api fetch to give the library a test-ride but I couldn't get it …
-
I started to think about a new error model.
This is what I get so far
```ts
export type DecodeError =
| Leaf
| LabeledProduct // suitable for product types indexed by labels
| Indexed…
-
I'm having some code that needs to transform an `Option` using async functions.
But it is getting out of hand.
```csharp
public async Task Handle(int id)
{
var externalFlowId = (await
…
-
Something I've seen elsewhere is the concept of piping data to functions, which can drastically increase readability in cases where someone would either use intermediate variables or call functions as…
-
**Warning: this initial comment is a bit lengthy. About 2.5k words, or about a 10-15 minute read.**
-----
*[Synthesizing](https://github.com/tc39/proposal-signals/issues/122#issuecomment-2040524…
-
Lots of people here are interested in handling async/await in conjunction with signals. Some approaches that have been suggested:
- @modderme123 's Bubble reactivity uses something like React Suspens…
-
### Problem Description
The Kotlin StdLib contains a function named `runCatching`. It tries the provided lambda and catches any `Throwable` that is not caught or thrown by the lambda.
However, usi…
-
My question concerns the initial decision to split `result` and `maybe` into two separate repositories/libraries. From my understanding, both encapsulate the concept of railway-oriented programming. I…
-
## Purpose
We want to have robust error handling in harvesting2.0, but we're not sure how to do that.
Given above design questions, conducting prototyping of logging and capturing errors for future …
-
I'm not sure if this is a problem with the extension, or the API being used by the extension.
Steps to recreate:
1. Go to https://fsharpforfunandprofit.com/rop/
2. Click on Logseq Quick Capture…