func copyBytes <DestinationType>( to: UnsafeMutableBufferPointer<DestinationType>) -> Int
Copies the bytes of data from the type into a typed memory buffer.
その型からデータのバイトいくらかをある型付きメモリバッファにコピーします。
func copyBytes (to: UnsafeMutableRawBufferPointer) -> Int
Copies the bytes of data from the type into a raw memory buffer.
その型からデータのバイトいくらかをある生メモリバッファにコピーします。
func copyBytes (to: UnsafeMutableRawBufferPointer, count: Int) -> Int
Copies the provided number of bytes from the start of the type into a raw memory buffer.
その型の始まりからこの提供されたバイト数をある生メモリバッファにコピーします。
func copyBytes <DestinationType, R>( to: UnsafeMutableBufferPointer<DestinationType>, from: R) -> Int
Copies a range of the bytes from the type into a typed memory buffer.
その型からあるバイト範囲をある型付きメモリバッファにコピーします。
func copyBytes <R>(to: UnsafeMutableRawBufferPointer, from: R) -> Int
Copies a range of the bytes from the type into a raw memory buffer.
その型からあるバイト範囲をある生メモリバッファにコピーします。