forEachLine

JVM
1.0
fun Reader.forEachLine(action: (String) -> Unit)

Iterates through each line of this reader, calls action for each line read and closes the Reader when it's completed.

Parameters

action - function to process file lines.