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 ptr: UnsafeMutableBufferPointer<DestinationType>, from range: R) -> Int where R : RangeExpression, Self.Index == R.Bound

Parameters パラメータ

ptr

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

range

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

Return Value 戻り値

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

See Also 参照

DataProtocol Implementations DataProtocol実装