All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jvmMain.net.codinux.csv.reader.datareader.JavaIoReaderDataReader.kt Maven / Gradle / Ivy

Go to download

Port of FastCSV, an ultra fast and simple RFC 4180 compliant CSV library, for Kotlin Multiplatform

The newest version!
package net.codinux.csv.reader.datareader

import java.io.Reader

class JavaIoReaderDataReader(private val reader: Reader) : DataReader {

  override val areAllDataBuffered: Boolean = false

  override fun getBufferedData() = null

  override fun read(buffer: CharArray, offset: Int, length: Int) = reader.read(buffer, offset, length)

  override fun close() {
    reader.close()
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy