func append<SourceType>(UnsafeBufferPointer<SourceType>)
Append a buffer of bytes to the data.
あるバッファのバイトをデータに加えます。
func append(UnsafePointer<UInt8>, count: Int)
Appends the specified bytes from memory to the end of the data.
指定されたバイトをメモリからデータの終わりに加えます。
func append(contentsOf : [UInt8])
Appends the bytes in the specified array to the end of the data.
指定された配列の中のバイトをデータの終わりに加えます。
func reserveCapacity (Int)
Prepares the collection to store the specified number of elements, when doing so is appropriate for the underlying type.
指定された数の要素を格納するようにコレクションを準備します、そうすることが基礎をなす型に対して適切である場合には。