@@ -834,6 +834,7 @@ extension FetchOne: Equatable where Value: Equatable {
834834 /// (`@Dependency(\.defaultDatabase)`).
835835 /// - animation: The animation to use for user interface changes that result from changes to
836836 /// the fetched results.
837+ @available ( iOS 17 , macOS 14 , tvOS 17 , watchOS 10 , * )
837838 public init (
838839 wrappedValue: sending Value,
839840 database: ( any DatabaseReader ) ? = nil ,
@@ -853,6 +854,7 @@ extension FetchOne: Equatable where Value: Equatable {
853854 /// (`@Dependency(\.defaultDatabase)`).
854855 /// - animation: The animation to use for user interface changes that result from changes to
855856 /// the fetched results.
857+ @available ( iOS 17 , macOS 14 , tvOS 17 , watchOS 10 , * )
856858 public init (
857859 wrappedValue: sending Value,
858860 database: ( any DatabaseReader ) ? = nil ,
@@ -875,6 +877,7 @@ extension FetchOne: Equatable where Value: Equatable {
875877 /// (`@Dependency(\.defaultDatabase)`).
876878 /// - animation: The animation to use for user interface changes that result from changes to
877879 /// the fetched results.
880+ @available ( iOS 17 , macOS 14 , tvOS 17 , watchOS 10 , * )
878881 public init < S: SelectStatement > (
879882 wrappedValue: Value ,
880883 _ statement: S ,
@@ -903,6 +906,7 @@ extension FetchOne: Equatable where Value: Equatable {
903906 /// (`@Dependency(\.defaultDatabase)`).
904907 /// - animation: The animation to use for user interface changes that result from changes to
905908 /// the fetched results.
909+ @available ( iOS 17 , macOS 14 , tvOS 17 , watchOS 10 , * )
906910 public init < V: QueryRepresentable > (
907911 wrappedValue: Value ,
908912 _ statement: some StructuredQueriesCore . Statement < V > ,
@@ -929,6 +933,7 @@ extension FetchOne: Equatable where Value: Equatable {
929933 /// (`@Dependency(\.defaultDatabase)`).
930934 /// - animation: The animation to use for user interface changes that result from changes to
931935 /// the fetched results.
936+ @available ( iOS 17 , macOS 14 , tvOS 17 , watchOS 10 , * )
932937 public init < V: QueryRepresentable > (
933938 wrappedValue: Value = nil ,
934939 _ statement: some StructuredQueriesCore . Statement < V > ,
@@ -955,6 +960,7 @@ extension FetchOne: Equatable where Value: Equatable {
955960 /// (`@Dependency(\.defaultDatabase)`).
956961 /// - animation: The animation to use for user interface changes that result from changes to
957962 /// the fetched results.
963+ @available ( iOS 17 , macOS 14 , tvOS 17 , watchOS 10 , * )
958964 public init < S: StructuredQueriesCore . Statement < Value > > (
959965 wrappedValue: Value ,
960966 _ statement: S ,
@@ -982,6 +988,7 @@ extension FetchOne: Equatable where Value: Equatable {
982988 /// (`@Dependency(\.defaultDatabase)`).
983989 /// - animation: The animation to use for user interface changes that result from changes to
984990 /// the fetched results.
991+ @available ( iOS 17 , macOS 14 , tvOS 17 , watchOS 10 , * )
985992 public init < S: SelectStatement > (
986993 wrappedValue: Value = . _none,
987994 _ statement: S ,
@@ -1011,6 +1018,7 @@ extension FetchOne: Equatable where Value: Equatable {
10111018 /// (`@Dependency(\.defaultDatabase)`).
10121019 /// - animation: The animation to use for user interface changes that result from changes to
10131020 /// the fetched results.
1021+ @available ( iOS 17 , macOS 14 , tvOS 17 , watchOS 10 , * )
10141022 public init < S: StructuredQueriesCore . Statement > (
10151023 wrappedValue: Value = . _none,
10161024 _ statement: S ,
@@ -1040,6 +1048,7 @@ extension FetchOne: Equatable where Value: Equatable {
10401048 /// (`@Dependency(\.defaultDatabase)`).
10411049 /// - animation: The animation to use for user interface changes that result from changes to
10421050 /// the fetched results.
1051+ @available ( iOS 17 , macOS 14 , tvOS 17 , watchOS 10 , * )
10431052 public init (
10441053 wrappedValue: Value = . _none,
10451054 _ statement: some StructuredQueriesCore . Statement < Value > ,
@@ -1067,6 +1076,7 @@ extension FetchOne: Equatable where Value: Equatable {
10671076 /// (`@Dependency(\.defaultDatabase)`).
10681077 /// - animation: The animation to use for user interface changes that result from changes to
10691078 /// the fetched results.
1079+ @available ( iOS 17 , macOS 14 , tvOS 17 , watchOS 10 , * )
10701080 public func load< S: SelectStatement > (
10711081 _ statement: S ,
10721082 database: ( any DatabaseReader ) ? = nil ,
@@ -1088,6 +1098,7 @@ extension FetchOne: Equatable where Value: Equatable {
10881098 /// (`@Dependency(\.defaultDatabase)`).
10891099 /// - animation: The animation to use for user interface changes that result from changes to
10901100 /// the fetched results.
1101+ @available ( iOS 17 , macOS 14 , tvOS 17 , watchOS 10 , * )
10911102 public func load< V: QueryRepresentable > (
10921103 _ statement: some StructuredQueriesCore . Statement < V > ,
10931104 database: ( any DatabaseReader ) ? = nil ,
@@ -1107,6 +1118,7 @@ extension FetchOne: Equatable where Value: Equatable {
11071118 /// (`@Dependency(\.defaultDatabase)`).
11081119 /// - animation: The animation to use for user interface changes that result from changes to
11091120 /// the fetched results.
1121+ @available ( iOS 17 , macOS 14 , tvOS 17 , watchOS 10 , * )
11101122 public func load< V: QueryRepresentable > (
11111123 _ statement: some StructuredQueriesCore . Statement < V > ,
11121124 database: ( any DatabaseReader ) ? = nil ,
@@ -1126,6 +1138,7 @@ extension FetchOne: Equatable where Value: Equatable {
11261138 /// (`@Dependency(\.defaultDatabase)`).
11271139 /// - animation: The animation to use for user interface changes that result from changes to
11281140 /// the fetched results.
1141+ @available ( iOS 17 , macOS 14 , tvOS 17 , watchOS 10 , * )
11291142 public func load< S: SelectStatement > (
11301143 _ statement: S ,
11311144 database: ( any DatabaseReader ) ? = nil ,
@@ -1148,6 +1161,7 @@ extension FetchOne: Equatable where Value: Equatable {
11481161 /// (`@Dependency(\.defaultDatabase)`).
11491162 /// - animation: The animation to use for user interface changes that result from changes to
11501163 /// the fetched results.
1164+ @available ( iOS 17 , macOS 14 , tvOS 17 , watchOS 10 , * )
11511165 public func load< S: StructuredQueriesCore . Statement > (
11521166 _ statement: S ,
11531167 database: ( any DatabaseReader ) ? = nil ,
@@ -1170,6 +1184,7 @@ extension FetchOne: Equatable where Value: Equatable {
11701184 /// (`@Dependency(\.defaultDatabase)`).
11711185 /// - animation: The animation to use for user interface changes that result from changes to
11721186 /// the fetched results.
1187+ @available ( iOS 17 , macOS 14 , tvOS 17 , watchOS 10 , * )
11731188 public func load(
11741189 _ statement: some StructuredQueriesCore . Statement < Value > ,
11751190 database: ( any DatabaseReader ) ? = nil ,
0 commit comments