We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7cf830 commit d3b660dCopy full SHA for d3b660d
stdlib/public/core/Array.swift
@@ -1296,14 +1296,14 @@ extension Array: RangeReplaceableCollection {
1296
// checker speed up cases where there is a large number of uses of the
1297
// operator in the same expression.
1298
extension Array {
1299
- @inlinable // FIXME(sil-serialize-all)
+ @inlinable
1300
public static func + (lhs: Array, rhs: Array) -> Array {
1301
var lhs = lhs
1302
lhs.append(contentsOf: rhs)
1303
return lhs
1304
}
1305
1306
1307
public static func += (lhs: inout Array, rhs: Array) {
1308
1309
0 commit comments