Instance Method
インスタンスメソッド
increaseLength(by:)
Increases the length of the receiver by a given number of bytes.
レシーバの長さをある与えられたバイト数によって漸増します。
Declaration
宣言
func increaseLength(by extraLength: Int
)
Parameters
パラメータ
extraLength
The number of bytes by which to increase the receiver's length.
それによってレシーバのもつ長さを漸増するバイトの数。
Discussion
議論
The additional bytes are all set to 0
.
追加のバイトは、全て0
に設定されます。
See Also
参照
Adding Bytes
バイトを加える
func append(Data)
Appends the content of another data object to the receiver.
別のデータオブジェクトの内容をレシーバに加えます。
Related Documentation
関連文書
var length: Int
The number of bytes contained in the mutable data object.
可変データオブジェクトによって含まれるバイト数。