Add error handling primitives to Subscribable
Lint / lint (push) Successful in 15s

This commit is contained in:
Julien Valverdé
2026-06-21 21:34:43 +02:00
parent a1fbd8a670
commit 778a041a13
6 changed files with 135 additions and 5 deletions
+1 -1
View File
@@ -134,4 +134,4 @@ const count = Subscribable.focusArrayLength(users)
const current = yield* count.get
```
The module includes `make`, `map`, `mapEffect`, `unwrap`, and the same readonly focus helpers used by Lens. A `SubscriptionRef` can first be converted with `Lens.fromSubscriptionRef`, since every Lens is already a Subscribable.
The module includes `make`, `map`, `mapEffect`, `mapError`, `tapError`, `unwrap`, and the same readonly focus helpers used by Lens. A `SubscriptionRef` can first be converted with `Lens.fromSubscriptionRef`, since every Lens is already a Subscribable.