Kotlin, being a statically typed programming language that runs on the JVM, does not include a built-in library for handling CSV files.
Kotlin does not include built-in support for JSON but leverages the powerful features of third-party libraries such as Gson by Google and Kotlinx.serialization by JetBrains.
Gson
Kotlinx.serialization
To handle TOML in Kotlin, you might use a library like ktoml.
ktoml
In Kotlin, you can use the built-in javax.xml.parsers for parsing.
javax.xml.parsers
Kotlin does not have built-in support for YAML parsing and serialization, but you can utilize popular third-party libraries such as snakeyaml (for general YAML parsing) and kotlinx.serialization (with a YAML format extension) to work with YAML files.
snakeyaml
kotlinx.serialization