Package-level declarations

Types

Link copied to clipboard
class CharReaderFromSyncStream(val stream: SyncStream, val charset: Charset, val chunkSize: Int = DEFAULT_CHUNK_SIZE) : CharReader
Link copied to clipboard
class FileSyncStreamBase(val file: File, val mode: String = "r") : <ERROR CLASS> ERROR CLASS: Symbol not found for SyncStreamBase

Functions

Link copied to clipboard
fun AsyncStream.asVfsFile(name: String = "unknown.bin"): VfsFile
Link copied to clipboard
fun File.openSync(mode: String = "r"): ERROR CLASS: Symbol not found for SyncStream
Link copied to clipboard
fun InputStream.toAsync(context: ERROR CLASS: Symbol not found for CoroutineContext?? = Dispatchers.IO, length: Long? = null): ERROR CLASS: Symbol not found for AsyncInputStream
Link copied to clipboard
fun SyncStream.toCharReader(charset: Charset, chunkSize: Int = 1024): CharReader
fun ByteArray.toCharReader(charset: Charset, chunkSize: Int = 1024): CharReader
Link copied to clipboard
fun ERROR CLASS: Symbol not found for SyncStream.toInputStream(): InputStream
Link copied to clipboard
fun InputStream.toSyncInputStream(): ERROR CLASS: Symbol not found for SyncInputStream
Link copied to clipboard
fun OutputStream.toSyncOutputStream(): ERROR CLASS: Symbol not found for SyncOutputStream
Link copied to clipboard
fun InputStream.toSyncStream(): ERROR CLASS: Symbol not found for SyncInputStream
Link copied to clipboard
suspend fun AsyncOutputStream.writeFile(source: VfsFile): Long