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

append(_:length:)

Appends to the receiver a given number of bytes from a given buffer. レシーバにある与えられた数のバイトをある与えられたバッファから加えます。

Declaration 宣言

func append(_ bytes: UnsafeRawPointer, 
     length: Int)

Parameters パラメータ

bytes

A buffer containing data to append to the receiver's content. レシーバの内容に加えることになるデータを含んでいるバッファ。

length

The number of bytes from bytes to append. bytesから加えることになるバイト数。

Discussion 議論

A sample using this method can be found in Working With Mutable Binary Data. このメソッドを使う見本は、Working With Mutable Binary Dataで見つかります。

See Also 参照

Adding Bytes バイトを加える