t

kantan.csv

VersionSpecificRowEncoderInstances

trait VersionSpecificRowEncoderInstances extends AnyRef

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. VersionSpecificRowEncoderInstances
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. implicit def iterable[A, M[X] <: IterableOnce[X]](implicit arg0: CellEncoder[A]): 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)