func append(Data)
Appends the content of another data object to the receiver.
別のデータオブジェクトの内容をレシーバに加えます。
func increaseLength (by: Int)
Increases the length of the receiver by a given number of bytes.
レシーバの長さをある与えられたバイト数によって漸増します。
Availability 有効性
Technology
func append(_ bytes: UnsafeRawPointer
,
length: Int
)
bytes
A buffer containing data to append to the receiver's content. レシーバの内容に加えることになるデータを含んでいるバッファ。
length
The number of bytes from bytes
to append.
bytes
から加えることになるバイト数。
A sample using this method can be found in Working With Mutable Binary Data. このメソッドを使う見本は、Working With Mutable Binary Dataで見つかります。
func append(Data)
func increaseLength (by: Int)