0.2.2 #31

Merged
Thilawyn merged 184 commits from next into master 2026-01-16 17:05:31 +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(),
)
}
}