File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -1267,6 +1267,7 @@ extension Collection {
1267
1267
///
1268
1268
/// - Complexity: Hopefully less than O(`count`).
1269
1269
@inlinable
1270
+ @inline ( __always)
1270
1271
public // dispatching
1271
1272
func _customIndexOfEquatableElement( _: Element ) -> Index ? ? {
1272
1273
return nil
@@ -1283,6 +1284,7 @@ extension Collection {
1283
1284
///
1284
1285
/// - Complexity: Hopefully less than O(`count`).
1285
1286
@inlinable
1287
+ @inline ( __always)
1286
1288
public // dispatching
1287
1289
func _customLastIndexOfEquatableElement( _ element: Element ) -> Index ? ? {
1288
1290
return nil
@@ -1802,6 +1804,7 @@ extension Collection where SubSequence == Self {
1802
1804
1803
1805
extension Collection {
1804
1806
@inlinable
1807
+ @inline ( __always)
1805
1808
public func _preprocessingPass< R> (
1806
1809
_ preprocess: ( ) throws -> R
1807
1810
) rethrows -> R ? {
Original file line number Diff line number Diff line change @@ -905,13 +905,15 @@ extension Sequence {
905
905
}
906
906
907
907
@inlinable
908
+ @inline ( __always)
908
909
public func _preprocessingPass< R> (
909
910
_ preprocess: ( ) throws -> R
910
911
) rethrows -> R ? {
911
912
return nil
912
913
}
913
914
914
915
@inlinable
916
+ @inline ( __always)
915
917
public func _customContainsEquatableElement(
916
918
_ element: Iterator . Element
917
919
) -> Bool ? {
You can’t perform that action at this time.
0 commit comments