Generic Function

withUnsafeMutableBytes(of:_:)

Invokes the given closure with a mutable buffer pointer covering the raw bytes of the given argument. 与えられたクロージャを、与えられた引数の生のバイトを変換している可変バッファポインタとともに発動します。

Declaration 宣言

func withUnsafeMutableBytes<T, Result>(of value: inout T, _ body: (UnsafeMutableRawBufferPointer) throws -> Result) rethrows -> Result

Parameters パラメータ

value

An instance to temporarily access through a mutable raw buffer pointer. Note that the inout exclusivity rules mean that, like any other inout argument, value cannot be directly accessed by other code for the duration of body. Access must only occur through the pointer argument to body until body returns. 可変の生のバッファポインタを通して一時的にアクセスされることになるインスタンス。inout排他規則が意味することに注意してください、何か他のinoutと同様に、valuebodyの継続期間には他のコードによって直接にアクセス可能ではありません。アクセスは、bodyに対するポインタ引数を通して、bodyが返るまでに、発生するだけでなければなりません。

body

A closure that takes a raw buffer pointer to the bytes of value as its sole argument. If the closure has a return value, that value is also used as the return value of the withUnsafeMutableBytes(of:_:) function. The buffer pointer argument is valid only for the duration of the closure’s execution. valueのバイトへの生のバッファポインタをそれの唯一の引数として取るクロージャ。クロージャが戻り値を持つならば、その値はまたwithUnsafeMutableBytes(of:_:)関数の戻り値としても使われます。バッファポインタは、ただクロージャの実行の間に対してのみ有効とされます。

Return Value 戻り値

The return value, if any, of the body closure. bodyクロージャの、もしあれば、戻り値。

Discussion 解説

The buffer pointer argument to the body closure provides a collection interface to the raw bytes of value. The buffer is the size of the instance passed as value and does not include any remote storage. bodyクロージャへのバッファポインタ引数は、valueの生のバイトへのコレクションインターフェイスを提供します。バッファは、valueとして渡されるインスタンスの大きさで、あらゆるリモートストレージを含みません。

See Also 参照

Memory Access メモリアクセス