Skip to content

Commit fc2c628

Browse files
committed
Remove last public inlines
1 parent 69e46e6 commit fc2c628

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

stdlib/public/SDK/Foundation/Data.swift

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1585,7 +1585,6 @@ public struct Data : ReferenceConvertible, Equatable, Hashable, RandomAccessColl
15851585
}
15861586
}
15871587

1588-
@inlinable
15891588
public mutating func replaceSubrange(_ subrange: Range<Index>, with bytes: UnsafeRawPointer, count cnt: Int) {
15901589
_validateRange(subrange)
15911590
let nsRange = NSRange(location: subrange.lowerBound, length: subrange.upperBound - subrange.lowerBound)
@@ -1601,7 +1600,6 @@ public struct Data : ReferenceConvertible, Equatable, Hashable, RandomAccessColl
16011600
/// Return a new copy of the data in a specified range.
16021601
///
16031602
/// - parameter range: The range to copy.
1604-
@inlinable
16051603
public func subdata(in range: Range<Index>) -> Data {
16061604
_validateRange(range)
16071605
if isEmpty {
@@ -1651,7 +1649,6 @@ public struct Data : ReferenceConvertible, Equatable, Hashable, RandomAccessColl
16511649
return hashValue
16521650
}
16531651

1654-
@inlinable
16551652
public func advanced(by amount: Int) -> Data {
16561653
_validateIndex(startIndex + amount)
16571654
let length = count - amount

0 commit comments

Comments
 (0)