func withUnsafeBytes <ResultType, ContentType>((UnsafePointer<ContentType>) -> ResultType) -> ResultType
Accesses the raw bytes in the data's buffer.
データの持つバッファの中の生のバイトにアクセスします。
func withUnsafeMutableBytes <ResultType, ContentType>((UnsafeMutablePointer<ContentType>) -> ResultType) -> ResultType
Mutates the raw bytes in the data's buffer.
データの持つバッファの中の生のバイトを変化させます。
func copyBytes (to: UnsafeMutablePointer<UInt8>, count: Int)
Copies the contents of the data to memory.
データの内容をメモリにコピーします。
func copyBytes <DestinationType>( to: UnsafeMutableBufferPointer<DestinationType>, from: Range<Data.Index>?) -> Int
Copies the bytes in a range from the data into a buffer.
データからある範囲のバイトをバッファにコピーします。