kantan.csv.ops
Provides syntax for encoding values as CSV rows.
Importing kantan.csv.ops._ will add asCsvRow to any type A such that there exists an implicit RowEncoder[A] in scope.
kantan.csv.ops._
A
RowEncoder[A]
Encodes a value as a CSV row.
For example:
scala> List(1, 2, 3).asCsvRow res0: Seq[String] = List(1, 2, 3)
Provides syntax for encoding values as CSV rows.
Importing
kantan.csv.ops._will add asCsvRow to any typeAsuch that there exists an implicitRowEncoder[A]in scope.