Instance Methodswift-nio 2.84.0_NIOFileSystem
makeAsyncIterator
FileChunks.swift:66- iOS
- 13.0+
- macOS
- 10.15+
- tvOS
- 13.0+
- watchOS
- 6.0+
func makeAsyncIterator() -> FileChunks.FileChunkIterator
func makeAsyncIterator() -> FileChunks.FileChunkIterator
s14_NIOFileSystem10FileChunksV17makeAsyncIteratorAC0c5ChunkG0VyF
What are these?6H32Y
import _NIOFileSystem
A file system library for Swift.
struct FileChunks
An AsyncSequence
of ordered chunks read from a file.
struct FileChunkIterator
@preconcurrency init<S>(wrapping sequence: S) where S : Sendable, S : AsyncSequence, S.Element == ByteBuffer
Create a FileChunks
sequence backed by wrapping an AsyncSequence
.
typealias Element = ByteBuffer