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
Enum cases can now satisfy static protocol requirements. A static get-only property of type `Self` can be witnessed by an enum case with no associated values and a static function with arguments and returning `Self` can be witnessed by an enum case with associated values.
Non-generic members that support a generic parameter list, including nested type declarations, are now allowed to carry a contextual `where` clause against outer generic parameters. Previously, such declarations could only be expressed by placing the member inside a dedicated constrained extension.
@@ -97,9 +114,13 @@ Swift Next
97
114
closure's capture list in addition to the existing 'use `self.` explicitly'
98
115
fix-it.
99
116
117
+
**Add new entries to the top of this section, not here!**
118
+
100
119
Swift 5.2
101
120
---------
102
121
122
+
### 2020-03-24 (Xcode 11.4)
123
+
103
124
*[SR-11841][]:
104
125
105
126
When chaining calls to `filter(_:)` on a lazy sequence or collection, the
@@ -292,8 +313,6 @@ Swift 5.2
292
313
print(s[0])
293
314
```
294
315
295
-
**Add new entries to the top of this section, not here!**
0 commit comments