func copyBytes <DestinationType>( to: UnsafeMutableBufferPointer<DestinationType>, count: Int) -> Int
Copies the provided number of bytes from the start of the type into a typed memory buffer.
その型の始まりからこの提供されたバイト数をある型付きメモリバッファにコピーします。
Availability 有効性
Technology
@discardableResult func copyBytes(to ptr: UnsafeMutableRawBufferPointer
, count: Int
) -> Int
ptr
A pointer to the raw memory buffer you want to copy the bytes into. あなたがバイトいくらかをそれへとコピーしたい生メモリバッファへのポインタ。
count
The number of bytes to copy. コピーするバイト数。
The number of bytes copied. コピーされたバイト数。
func copyBytes <DestinationType>( to: UnsafeMutableBufferPointer<DestinationType>, count: Int) -> Int