type CellEncoder[A] = Encoder[String, A, codecs.type]
Describes how to encode values of a specific type to CSV cells.
All types A
such that there exists an implicit instance of CellEncoder[A]
in scope can be encoded to CSV
cells.
Note that instances of this type class are rarely used directly - their purpose is to be implicitly assembled into more complex instances of RowEncoder.
See the companion object for creation and summoning methods.
- Source
- package.scala
- See also
kantan.codecs.Encoder
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- CellEncoder
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract def encode(d: D): E
- Definition Classes
- Encoder