readFile

suspend fun <T> readFile(file: File, skipLines: Int = 1, skipComments: Boolean = true, ignoreSurroundingSpaces: Boolean = true, ignoreEmptyLines: Boolean = true, delimiter: Char = ';', charset: Charset = Charsets.UTF_8, mapper: (record: List<String>) -> T?): List<T>