Structure

UnsafeRawBufferPointer

A nonowning collection interface to the bytes in a region of memory. メモリのいち領域中のバイトに対する非所有コレクションインターフェイス。

Declaration 宣言

@frozen struct UnsafeRawBufferPointer

Overview 概要

You can use an UnsafeRawBufferPointer instance in low-level operations to eliminate uniqueness checks and release mode bounds checks. Bounds checks are always performed in debug mode. あなたは、UnsafeRawBufferPointerインスタンスを低水準演算において使用することで、固有性検査とリリースモード境界検査を省くことができます。境界検査は、デバッグモードにおいて常に実行されます。

An UnsafeRawBufferPointer instance is a view of the raw bytes in a region of memory. Each byte in memory is viewed as a UInt8 value independent of the type of values held in that memory. Reading from memory through a raw buffer is an untyped operation. UnsafeRawBufferPointerインスタンスは、メモリのある領域の中の生のバイトのある見方(ビュー)です。メモリ中の各バイトは、そのメモリ中に保持される値の型に影響を受けないUInt8値として眺められます。ある生のバッファを通してメモリから読み込むことは、型無し演算のひとつです。

In addition to its collection interface, an UnsafeRawBufferPointer instance also supports the load(fromByteOffset:as:) method provided by UnsafeRawPointer, including bounds checks in debug mode. それのコレクションインターフェイスに加えて、UnsafeRawBufferPointerインスタンスはまた、load(fromByteOffset:as:)メソッドをUnsafeRawPointerによって提供されてサポートし、デバッグモードにおける境界検査を含んでいます。

To access the underlying memory through typed operations, the memory must be bound to a trivial type. 型付演算を通して基礎をなすメモリにアクセスするには、メモリは自明型に束縛されなければなりません。

UnsafeRawBufferPointer Semantics UnsafeRawBufferPointer意味論

An UnsafeRawBufferPointer instance is a view into memory and does not own the memory that it references. Copying a variable or constant of type UnsafeRawBufferPointer does not copy the underlying memory. However, initializing another collection with an UnsafeRawBufferPointer instance copies bytes out of the referenced memory and into the new collection. UnsafeRawBufferPointerインスタンスは、メモリに対するある見方(ビュー)であり、それが参照するメモリ自体ではありません。型UnsafeRawBufferPointerの変数や定数をコピーすることは、基礎をなすメモリをコピーしません。しかしながら、別のコレクションをUnsafeRawBufferPointerインスタンスで初期化することは、バイトを参照されたメモリから外へそして新しいコレクションへとコピーします、

The following example uses someBytes, an UnsafeRawBufferPointer instance, to demonstrate the difference between assigning a buffer pointer and using a buffer pointer as the source for another collection’s elements. Here, the assignment to destBytes creates a new, nonowning buffer pointer covering the first n bytes of the memory that someBytes references—nothing is copied: 以下の例はsomeBytesUnsafeRawBufferPointerインスタンスを使って、バッファポインタの割り当することとバッファポインタを別のコレクションの要素のソースとして使うことの間の違いを実演します。ここで、destBytesへの割り当ては、someBytesが参照するメモリの最初のnバイトを変換して、新しい、非所有のバッファポインタを作成します — コピーされるものは何もありません:


var destBytes = someBytes[0..<n]

Next, the bytes referenced by destBytes are copied into byteArray, a new [UInt8] array, and then the remainder of someBytes is appended to byteArray: 次に、destBytesによって参照されるバイトはbyteArray、新しい[UInt8]配列へとコピーされます、そしてそれからsomeBytesの残りはbyteArrayに加えられます:


var byteArray: [UInt8] = Array(destBytes)
byteArray += someBytes[n..<someBytes.count]

Topics 話題

Type Aliases 型エイリアス

Initializers イニシャライザ

Instance Properties 様々なインスタンスプロパティ

Instance Methods インスタンスメソッド

Subscripts 添え字

Structures 構造体

Relationships 関係

See Also 参照

Raw Pointers 生のポインタ