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

getBytes(_:length:)

Copies a number of bytes from the start of the data object into a given buffer. データオブジェクトの始まりからあるバイト数をある与えられたバッファに複製します。

Declaration 宣言

func getBytes(_ buffer: UnsafeMutableRawPointer, 
       length: Int)

Parameters パラメータ

buffer

A buffer into which to copy data. それへとデータを複製することになるあるバッファ。

length

The number of bytes from the start of the receiver's data to copy to buffer. bufferに複製することになる、レシーバの持つデータの始まりからのバイト数。

Discussion 議論

The number of bytes copied is the smaller of the length parameter and the length of the data encapsulated in the object. 複製されるバイト数は、lengthパラメータと、オブジェクトにカプセル化されるデータのlengthのより短い方です。

See Also 参照

Accessing Underlying Bytes 基礎をなすバイトにアクセスする

Related Documentation 関連文書