Initializer

init(bytes:length:)

Initializes a data object filled with a given number of bytes copied from a given buffer. 与えられたバッファから複製される、与えられた数のバイトで満たされたデータオブジェクトを初期化します。

Declaration 宣言

init(bytes: UnsafeRawPointer?, 
length: Int)

Discussion 議論

A data object initialized by adding to it length bytes of data copied from the buffer bytes. The returned object might be different than the original receiver. それにlengthバイトのコピーされるデータをバッファbytesから追加することによって初期化されるデータオブジェクト。返されるオブジェクトは、オリジナルのレシーバとは異なるかもしれません。

See Also 参照

Creating Data データを作成する

Related Documentation 関連文書