0.2.1 #26

Merged
Thilawyn merged 144 commits from next into master 2025-12-01 23:37:40 +01:00
Showing only changes of commit a890d1c855 - Show all commits

View File

@@ -33,10 +33,12 @@ extends Pipeable.Class() implements Query<K, A, E, R, P> {
}
query(key: K) {
return this.result.pipe(
return this.fiber.pipe(
Effect.andThen(Option.match({
}))
onSome: Fiber.interrupt,
onNone: () => Effect.void,
})),
Effect.andThen(),
)
}
}