You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Sources/ComposableArchitecture/ViewStore.swift
+16-8Lines changed: 16 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -160,7 +160,8 @@ public final class ViewStore<ViewState, ViewAction> {
160
160
@available(
161
161
iOS,
162
162
deprecated:9999.0,
163
-
message:"""
163
+
message:
164
+
"""
164
165
Use 'init(_:observe:removeDuplicates:)' to make state observation explicit.
165
166
166
167
When using ViewStore you should take care to observe only the pieces of state that your view needs to do its job, especially towards the root of the application. See the performance article for more details:
@@ -171,7 +172,8 @@ public final class ViewStore<ViewState, ViewAction> {
171
172
@available(
172
173
macOS,
173
174
deprecated:9999.0,
174
-
message:"""
175
+
message:
176
+
"""
175
177
Use 'init(_:observe:removeDuplicates:)' to make state observation explicit.
176
178
177
179
When using ViewStore you should take care to observe only the pieces of state that your view needs to do its job, especially towards the root of the application. See the performance article for more details:
@@ -182,7 +184,8 @@ public final class ViewStore<ViewState, ViewAction> {
182
184
@available(
183
185
tvOS,
184
186
deprecated:9999.0,
185
-
message:"""
187
+
message:
188
+
"""
186
189
Use 'init(_:observe:removeDuplicates:)' to make state observation explicit.
187
190
188
191
When using ViewStore you should take care to observe only the pieces of state that your view needs to do its job, especially towards the root of the application. See the performance article for more details:
@@ -193,7 +196,8 @@ public final class ViewStore<ViewState, ViewAction> {
193
196
@available(
194
197
watchOS,
195
198
deprecated:9999.0,
196
-
message:"""
199
+
message:
200
+
"""
197
201
Use 'init(_:observe:removeDuplicates:)' to make state observation explicit.
198
202
199
203
When using ViewStore you should take care to observe only the pieces of state that your view needs to do its job, especially towards the root of the application. See the performance article for more details:
@@ -626,7 +630,8 @@ extension ViewStore where ViewState: Equatable {
626
630
@available(
627
631
iOS,
628
632
deprecated:9999.0,
629
-
message:"""
633
+
message:
634
+
"""
630
635
Use 'init(_:observe:)' to make state observation explicit.
631
636
632
637
When using ViewStore you should take care to observe only the pieces of state that your view needs to do its job, especially towards the root of the application. See the performance article for more details:
@@ -637,7 +642,8 @@ extension ViewStore where ViewState: Equatable {
637
642
@available(
638
643
macOS,
639
644
deprecated:9999.0,
640
-
message:"""
645
+
message:
646
+
"""
641
647
Use 'init(_:observe:)' to make state observation explicit.
642
648
643
649
When using ViewStore you should take care to observe only the pieces of state that your view needs to do its job, especially towards the root of the application. See the performance article for more details:
@@ -648,7 +654,8 @@ extension ViewStore where ViewState: Equatable {
648
654
@available(
649
655
tvOS,
650
656
deprecated:9999.0,
651
-
message:"""
657
+
message:
658
+
"""
652
659
Use 'init(_:observe:)' to make state observation explicit.
653
660
654
661
When using ViewStore you should take care to observe only the pieces of state that your view needs to do its job, especially towards the root of the application. See the performance article for more details:
@@ -659,7 +666,8 @@ extension ViewStore where ViewState: Equatable {
659
666
@available(
660
667
watchOS,
661
668
deprecated:9999.0,
662
-
message:"""
669
+
message:
670
+
"""
663
671
Use 'init(_:observe:)' to make state observation explicit.
664
672
665
673
When using ViewStore you should take care to observe only the pieces of state that your view needs to do its job, especially towards the root of the application. See the performance article for more details:
0 commit comments