type RowEncoder[A] = Encoder[Seq[String], A, codecs.type]

Describes how to encode values of a specific type to CSV rows.

See the companion object for creation and summoning methods.

Source
package.scala
See also

kantan.codecs.Encoder

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RowEncoder
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def encode(d: D): E
    Definition Classes
    Encoder

Concrete Value Members

  1. def contramap[DD](f: (DD) => D): Encoder[E, DD, T]
    Definition Classes
    Encoder
  2. def mapEncoded[EE](f: (E) => EE): Encoder[EE, D, T]
    Definition Classes
    Encoder
  3. def tag[TT]: Encoder[E, D, TT]
    Definition Classes
    Encoder
    Annotations
    @SuppressWarnings()