func withUnsafeBytes <ResultType, ContentType>((UnsafePointer<ContentType>) -> ResultType) -> ResultType
Accesses 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 (to: UnsafeMutablePointer<UInt8>, from: Range<Data.Index>)
Copies a subset of 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.
データからある範囲のバイトをバッファにコピーします。