We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
import com.github.marklister.collections.io._ val data = new java.io.StringReader("""1, Jan | 2, Feb""") CsvParser[Int,String].iterator(data).toList res3: List[(Int, String)] = List((1," Jan"), (2," Feb"))