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: test/api-digester/source-stability.swift.expected
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -58,8 +58,11 @@ Func DefaultRandomAccessIndices.index(after:) has return type change from Elemen
58
58
Func DefaultRandomAccessIndices.index(before:) has return type change from Elements.Index to DefaultRandomAccessIndices.Index
59
59
Func Dictionary.index(after:) has return type change from DictionaryIndex<Key, Value> to Dictionary<Key, Value>.Index
60
60
Func Dictionary.index(forKey:) has return type change from DictionaryIndex<Key, Value>? to Dictionary<Key, Value>.Index?
61
+
Func Dictionary.makeIterator() has return type change from DictionaryIterator<Key, Value> to DictionaryIterator<Dictionary.Key, Dictionary.Value>
61
62
Func Dictionary.popFirst() has return type change from (key: Key, value: Value)? to Dictionary.Element?
62
63
Func Dictionary.remove(at:) has return type change from (key: Key, value: Value) to Dictionary.Element
64
+
Func Dictionary.removeValue(forKey:) has return type change from Value? to Dictionary.Value?
65
+
Func Dictionary.updateValue(_:forKey:) has return type change from Value? to Dictionary.Value?
63
66
Func EnumeratedIterator.next() has return type change from (offset: Int, element: Base.Element)? to EnumeratedIterator.Element?
64
67
Func FlattenBidirectionalCollection.index(after:) has return type change from FlattenBidirectionalCollectionIndex<Base> to FlattenBidirectionalCollection.Index
65
68
Func FlattenBidirectionalCollection.index(before:) has return type change from FlattenBidirectionalCollectionIndex<Base> to FlattenBidirectionalCollection.Index
@@ -182,10 +185,22 @@ Func ReversedRandomAccessCollection.index(_:offsetBy:) has return type change fr
182
185
Func ReversedRandomAccessCollection.index(_:offsetBy:limitedBy:) has return type change from ReversedRandomAccessIndex<Base>? to ReversedRandomAccessCollection.Index?
183
186
Func ReversedRandomAccessCollection.index(after:) has return type change from ReversedRandomAccessIndex<Base> to ReversedRandomAccessCollection.Index
184
187
Func ReversedRandomAccessCollection.index(before:) has return type change from ReversedRandomAccessIndex<Base> to ReversedRandomAccessCollection.Index
188
+
Func Set.formSymmetricDifference(_:) has 1st parameter type change from Set<Element> to Set<Set.Element>
185
189
Func Set.index(after:) has return type change from SetIndex<Element> to Set<Element>.Index
186
190
Func Set.index(of:) has return type change from SetIndex<Element>? to Set<Element>.Index?
191
+
Func Set.intersection(_:) has return type change from Set<Element> to Set<Set.Element>
192
+
Func Set.isDisjoint(with:) has 1st parameter type change from Set<Element> to Set<Set.Element>
193
+
Func Set.isStrictSubset(of:) has 1st parameter type change from Set<Element> to Set<Set.Element>
194
+
Func Set.isStrictSuperset(of:) has 1st parameter type change from Set<Element> to Set<Set.Element>
195
+
Func Set.isSubset(of:) has 1st parameter type change from Set<Element> to Set<Set.Element>
196
+
Func Set.isSuperset(of:) has 1st parameter type change from Set<Element> to Set<Set.Element>
187
197
Func Set.popFirst() has return type change from Element? to Set.Element?
188
198
Func Set.remove(at:) has 1st parameter type change from SetIndex<Element> to Set<Element>.Index
199
+
Func Set.removeFirst() has return type change from Element to Set.Element
200
+
Func Set.subtract(_:) has 1st parameter type change from Set<Element> to Set<Set.Element>
201
+
Func Set.subtracting(_:) has return type change from Set<Element> to Set<Set.Element>
202
+
Func Set.symmetricDifference(_:) has return type change from Set<Element> to Set<Set.Element>
203
+
Func Set.union(_:) has return type change from Set<Element> to Set<Set.Element>
189
204
Func Slice.distance(from:to:) has return type change from Base.IndexDistance to Slice.IndexDistance
190
205
Func Slice.index(_:offsetBy:) has return type change from Base.Index to Slice.Index
191
206
Func Slice.index(_:offsetBy:limitedBy:) has return type change from Base.Index? to Slice.Index?
0 commit comments