實例方法
with
withUnsafeMutableBufferPointer(_:)
使用指向數組的可變連續存儲的指針調用給定的閉包。
聲明
mutating func withUnsafeMutableBufferPointer<R>(_ body: (inout UnsafeMutableBufferPointer<Element>) throws -> R) rethrows -> R
返回值
body
閉包參數的返回值(如果有)。
參數
body
帶有
UnsafeMutableBufferPointer
參數的閉包,該參數指向數組的連續存儲。如果body
有返回值,則該值也用作withUnsafeMutableBufferPointer(_:)
方法的返回值。指針參數僅在方法執行期間有效。
詳述
通常,優化器可以消除數組算法中的邊界檢查,但是當失敗時,在傳遞給閉包的緩衝區指針上調用相同的算法可以讓您以安全換取速度。
以下示例顯示將 UnsafeMutableBufferPointer
參數的內容修改為 body
如何更改數組的內容:
var numbers = [1, 2, 3, 4, 5]
numbers.withUnsafeMutableBufferPointer { buffer in
for i in stride(from: buffer.startIndex, to: buffer.endIndex - 1, by: 2) {
buffer.swapAt(i, i + 1)
}
}
print(numbers)
// Prints "[2, 1, 4, 3, 5]"
作為參數傳遞給 body
的指針僅在 withUnsafeMutableBufferPointer(_:)
執行期間有效。不要存儲或返回指針以供以後使用。
可用版本
iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+
相關用法
- Swift ContiguousArray withUnsafeMutableBytes(_:)用法及代碼示例
- Swift ContiguousArray withUnsafeBufferPointer(_:)用法及代碼示例
- Swift ContiguousArray withUnsafeBytes(_:)用法及代碼示例
- Swift ContiguousArray forEach(_:)用法及代碼示例
- Swift ContiguousArray insert(contentsOf:at:)用法及代碼示例
- Swift ContiguousArray reserveCapacity(_:)用法及代碼示例
- Swift ContiguousArray lexicographicallyPrecedes(_:)用法及代碼示例
- Swift ContiguousArray elementsEqual(_:)用法及代碼示例
- Swift ContiguousArray isEmpty用法及代碼示例
- Swift ContiguousArray suffix(from:)用法及代碼示例
- Swift ContiguousArray endIndex用法及代碼示例
- Swift ContiguousArray reduce(_:_:)用法及代碼示例
- Swift ContiguousArray split(separator:maxSplits:omittingEmptySubsequences:)用法及代碼示例
- Swift ContiguousArray sort()用法及代碼示例
- Swift ContiguousArray firstIndex(of:)用法及代碼示例
- Swift ContiguousArray replaceSubrange(_:with:)用法及代碼示例
- Swift ContiguousArray contains(_:)用法及代碼示例
- Swift ContiguousArray first(where:)用法及代碼示例
- Swift ContiguousArray append(contentsOf:)用法及代碼示例
- Swift ContiguousArray randomElement(using:)用法及代碼示例
- Swift ContiguousArray prefix(upTo:)用法及代碼示例
- Swift ContiguousArray index(_:offsetBy:limitedBy:)用法及代碼示例
- Swift ContiguousArray joined(separator:)用法及代碼示例
- Swift ContiguousArray prefix(through:)用法及代碼示例
- Swift ContiguousArray subscript(_:)用法及代碼示例
注:本文由純淨天空篩選整理自apple.com大神的英文原創作品 ContiguousArray withUnsafeMutableBufferPointer(_:)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。