kotlinx.serialization.csv.encode.SimpleCsvEncoder.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlinx-serialization-csv Show documentation
Show all versions of kotlinx-serialization-csv Show documentation
Library to easily use Kotlin Serialization to serialize to/from CSV.
package kotlinx.serialization.csv.encode
import kotlinx.serialization.csv.Csv
/**
* Default CSV encoder that writes each value into the next column.
*/
internal open class SimpleCsvEncoder(
csv: Csv,
writer: CsvWriter,
parent: CsvEncoder
) : CsvEncoder(csv, writer, parent)