@@ -304,7 +304,7 @@ public struct FetchOne<Value: Sendable>: Sendable {
304304 public func load< S: SelectStatement > (
305305 _ statement: S ,
306306 database: ( any DatabaseReader ) ? = nil
307- ) async throws -> FetchSubscription < Value >
307+ ) async throws -> FetchSubscription
308308 where
309309 Value == S . From . QueryOutput ,
310310 S. QueryValue == ( ) ,
@@ -325,7 +325,7 @@ public struct FetchOne<Value: Sendable>: Sendable {
325325 public func load< V: QueryRepresentable > (
326326 _ statement: some StructuredQueriesCore . Statement < V > ,
327327 database: ( any DatabaseReader ) ? = nil
328- ) async throws -> FetchSubscription < Value >
328+ ) async throws -> FetchSubscription
329329 where
330330 Value == V . QueryOutput
331331 {
@@ -346,7 +346,7 @@ public struct FetchOne<Value: Sendable>: Sendable {
346346 public func load< V: QueryRepresentable > (
347347 _ statement: some StructuredQueriesCore . Statement < V > ,
348348 database: ( any DatabaseReader ) ? = nil
349- ) async throws -> FetchSubscription < Value >
349+ ) async throws -> FetchSubscription
350350 where
351351 Value == V . QueryOutput ?
352352 {
@@ -367,7 +367,7 @@ public struct FetchOne<Value: Sendable>: Sendable {
367367 public func load< S: SelectStatement > (
368368 _ statement: S ,
369369 database: ( any DatabaseReader ) ? = nil
370- ) async throws -> FetchSubscription < Value >
370+ ) async throws -> FetchSubscription
371371 where
372372 Value: _OptionalProtocol ,
373373 Value == S . From . QueryOutput ? ,
@@ -392,7 +392,7 @@ public struct FetchOne<Value: Sendable>: Sendable {
392392 public func load< S: StructuredQueriesCore . Statement > (
393393 _ statement: S ,
394394 database: ( any DatabaseReader ) ? = nil
395- ) async throws -> FetchSubscription < Value >
395+ ) async throws -> FetchSubscription
396396 where
397397 Value: _OptionalProtocol ,
398398 S. QueryValue: QueryRepresentable ,
@@ -416,7 +416,7 @@ public struct FetchOne<Value: Sendable>: Sendable {
416416 public func load(
417417 _ statement: some StructuredQueriesCore . Statement < Value > ,
418418 database: ( any DatabaseReader ) ? = nil
419- ) async throws -> FetchSubscription < Value >
419+ ) async throws -> FetchSubscription
420420 where
421421 Value: QueryRepresentable ,
422422 Value: _OptionalProtocol ,
@@ -702,7 +702,7 @@ extension FetchOne {
702702 _ statement: S ,
703703 database: ( any DatabaseReader ) ? = nil ,
704704 scheduler: some ValueObservationScheduler & Hashable
705- ) async throws -> FetchSubscription < Value >
705+ ) async throws -> FetchSubscription
706706 where
707707 Value == S . From . QueryOutput ,
708708 S. QueryValue == ( ) ,
@@ -726,7 +726,7 @@ extension FetchOne {
726726 _ statement: some StructuredQueriesCore . Statement < V > ,
727727 database: ( any DatabaseReader ) ? = nil ,
728728 scheduler: some ValueObservationScheduler & Hashable
729- ) async throws -> FetchSubscription < Value >
729+ ) async throws -> FetchSubscription
730730 where
731731 Value == V . QueryOutput
732732 {
@@ -754,7 +754,7 @@ extension FetchOne {
754754 _ statement: some StructuredQueriesCore . Statement < V > ,
755755 database: ( any DatabaseReader ) ? = nil ,
756756 scheduler: some ValueObservationScheduler & Hashable
757- ) async throws -> FetchSubscription < Value >
757+ ) async throws -> FetchSubscription
758758 where
759759 Value == V . QueryOutput ?
760760 {
@@ -782,7 +782,7 @@ extension FetchOne {
782782 _ statement: S ,
783783 database: ( any DatabaseReader ) ? = nil ,
784784 scheduler: some ValueObservationScheduler & Hashable
785- ) async throws -> FetchSubscription < Value >
785+ ) async throws -> FetchSubscription
786786 where
787787 Value: _OptionalProtocol ,
788788 Value == S . From . QueryOutput ? ,
@@ -814,7 +814,7 @@ extension FetchOne {
814814 _ statement: S ,
815815 database: ( any DatabaseReader ) ? = nil ,
816816 scheduler: some ValueObservationScheduler & Hashable
817- ) async throws -> FetchSubscription < Value >
817+ ) async throws -> FetchSubscription
818818 where
819819 Value: _OptionalProtocol ,
820820 S. QueryValue: QueryRepresentable ,
@@ -845,7 +845,7 @@ extension FetchOne {
845845 _ statement: some StructuredQueriesCore . Statement < Value > ,
846846 database: ( any DatabaseReader ) ? = nil ,
847847 scheduler: some ValueObservationScheduler & Hashable
848- ) async throws -> FetchSubscription < Value >
848+ ) async throws -> FetchSubscription
849849 where
850850 Value: QueryRepresentable ,
851851 Value: _OptionalProtocol ,
@@ -1137,7 +1137,7 @@ extension FetchOne: Equatable where Value: Equatable {
11371137 _ statement: S ,
11381138 database: ( any DatabaseReader ) ? = nil ,
11391139 animation: Animation
1140- ) async throws -> FetchSubscription < Value >
1140+ ) async throws -> FetchSubscription
11411141 where
11421142 Value == S . From . QueryOutput ,
11431143 S. QueryValue == ( ) ,
@@ -1161,7 +1161,7 @@ extension FetchOne: Equatable where Value: Equatable {
11611161 _ statement: some StructuredQueriesCore . Statement < V > ,
11621162 database: ( any DatabaseReader ) ? = nil ,
11631163 animation: Animation
1164- ) async throws -> FetchSubscription < Value >
1164+ ) async throws -> FetchSubscription
11651165 where
11661166 Value == V . QueryOutput
11671167 {
@@ -1183,7 +1183,7 @@ extension FetchOne: Equatable where Value: Equatable {
11831183 _ statement: some StructuredQueriesCore . Statement < V > ,
11841184 database: ( any DatabaseReader ) ? = nil ,
11851185 animation: Animation
1186- ) async throws -> FetchSubscription < Value >
1186+ ) async throws -> FetchSubscription
11871187 where
11881188 Value == V . QueryOutput ?
11891189 {
@@ -1205,7 +1205,7 @@ extension FetchOne: Equatable where Value: Equatable {
12051205 _ statement: S ,
12061206 database: ( any DatabaseReader ) ? = nil ,
12071207 animation: Animation
1208- ) async throws -> FetchSubscription < Value >
1208+ ) async throws -> FetchSubscription
12091209 where
12101210 Value: _OptionalProtocol ,
12111211 Value == S . From . QueryOutput ? ,
@@ -1230,7 +1230,7 @@ extension FetchOne: Equatable where Value: Equatable {
12301230 _ statement: S ,
12311231 database: ( any DatabaseReader ) ? = nil ,
12321232 animation: Animation
1233- ) async throws -> FetchSubscription < Value >
1233+ ) async throws -> FetchSubscription
12341234 where
12351235 Value: _OptionalProtocol ,
12361236 S. QueryValue: QueryRepresentable ,
@@ -1255,7 +1255,7 @@ extension FetchOne: Equatable where Value: Equatable {
12551255 _ statement: some StructuredQueriesCore . Statement < Value > ,
12561256 database: ( any DatabaseReader ) ? = nil ,
12571257 animation: Animation
1258- ) async throws -> FetchSubscription < Value >
1258+ ) async throws -> FetchSubscription
12591259 where
12601260 Value: QueryRepresentable ,
12611261 Value: _OptionalProtocol ,
0 commit comments