Initializer

init(start:count:)

Creates a buffer over the specified number of contiguous bytes starting at the given pointer. 指定された数の隣接バイトすべてを覆うバッファを、与えられたポインタで開始して作成します。

Declaration 宣言

init(start: UnsafeMutableRawPointer?, count: Int)

Parameters パラメータ

start

The address of the memory that starts the buffer. If starts is nil, count must be zero. However, count may be zero even for a non-nil start. メモリのアドレス、それはバッファを始めます。startsnilならば、countはゼロでなければなりません。しかしながら、countは非nilstartに対してもゼロであるかもしれません。

count

The number of bytes to include in the buffer. count must not be negative. このバッファの中に含むことになるバイト数。countは負数であってはいけません。