Generic Instance Method 総称体インスタンスメソッド

copyBytes(to:from:)

Copies a range of the bytes from the type into a typed memory buffer. その型からあるバイト範囲をある型付きメモリバッファにコピーします。

Declaration 宣言

@discardableResult func copyBytes<DestinationType, R>(to: UnsafeMutableBufferPointer<DestinationType>, from: R) -> Int where R : RangeExpression, Self.Index == R.Bound

Parameters パラメータ

to

A typed pointer to the buffer you want to copy the bytes into. あなたがバイトをそれへとコピーしたいバッファへの型付きポインタ。

from

The range of bytes to copy. この範囲のバイトそれらをコピーします。

Return Value 戻り値

The number of bytes copied. コピーされたバイト数。

Discussion 議論

The following example copies the source bytes that the provided range identifies into the beginning of the specified typed memory buffer: 以下の例は、提供された範囲が識別するソースバイトをその指定された型付きメモリバッファの始まりにコピーします:


let source: [UInt8] = [0, 1, 2]
var dest: [UInt8] = [0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF]
dest.withUnsafeMutableBufferPointer { typedMemBuffer in
    source.copyBytes(to: typedMemBuffer, from: 1...2)
}
// dest = [0x01, 0x02, 0xFF, 0xFF, 0xFF, 0xFF]

See Also 参照

Copying Underlying Bytes 基礎をなすバイトをコピーする