Instance Property インスタンスプロパティ

bytes

The file’s contents, as an asynchronous sequence of bytes. ファイルのもつ内容、バイトいくつかからなるある非同期シーケンスとして。

Declaration 宣言

var bytes: FileHandle.AsyncBytes { get }

Discussion 議論

Use the for-await-in syntax to iterate over the bytes in this sequence. For text files, you can also use its characters, unicodeScalars, or lines properties to retrieve the contents in a more convenient format. Since all of these properties conform to AsyncSequence, as does bytes itself, you can use methods defined by AsyncSequence to perform powerful inline processing. For example, you can skip the first n bytes of the file with myFileHandle.bytes.prefix(n). for-await-in構文を使って、このシーケンスの中のバイトそれらのすべてにわたって反復してください。テキストファイルに対して、あなたはまたそれのcharactersunicodeScalars、またはlinesプロパティを使うことで、内容をより便利な形式で回収できます。これらプロパティの全てはAsyncSequenceに準拠することから、bytesそれ自体もそうですが、あなたはAsyncSequenceによって定義されるメソッドを使うことで、強力なインライン処理を実行できます。例えば、あなたはファイルの最初のnバイトを飛ばし読みすることが、myFileHandle.bytes.prefix(n)で可能です。

See Also 参照

Reading from a File Handle Asynchronously ファイルハンドルから非同期に読み出す