VersionSpecificRowEncoderInstances

kantan.csv.VersionSpecificRowEncoderInstances

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Members list

Implicits

Implicits

implicit def iterable[A : CellEncoder, M <: (IterableOnce)]: RowEncoder[M[A]]

Provides a RowEncoder instance for all traversable collections.

Provides a RowEncoder instance for all traversable collections.

List, for example:

scala> RowEncoder[List[Int]].encode(List(123, 456, 789))
res1: Seq[String] = List(123, 456, 789)

Attributes