kotlinx-io
kotlinx-io copied to clipboard
Kotlin multiplatform I/O library
I maintain a library depending on this one, but I currently cannot publish it for IR JS backend just because of this one. Is there anyway this could be built...
- update to kotlin 1.5.30 - clear build dependencies
```kt override fun writeFully(src: IntArray, offset: Int, length: Int) { require(length >= 0) { "length shouldn't be negative: $length" } require(offset + length < src.lastIndex) { "offset ($offset) + length...
Hi, I need Kotlin-common File API with access to fsync syscall and I want to contribute its implementation to the project. Are there any API design drafts or requirements for...
Trying to compile against version 0.1.16 with Kotlin 1.3.71, I get the following error: ``` The abi versions don't match. Expected '[22]', found '17' ```
I'm not sure if this problem is still relevant as it looks like the function in question has been commented out of the current tree: https://github.com/Kotlin/kotlinx-io/blame/master/core/commonMain/src/kotlinx/io/text/CharsetEncoder.kt but in case it...
I striked while usage of `kotlinx.io.IOException` with this following compiler warning while doing some multiplatform I/O operations: Writing the text if you are not able to read: `Using exception is...