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