CsvRecordDecoder2

ceesvee.CsvRecordDecoder2
sealed trait CsvRecordDecoder2 extends CsvRecordDecoder3

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Show all
Known subtypes
Self type

Members list

Value members

Inherited methods

inline def derived[A](using m: ProductOf[A]): CsvRecordDecoder[A]

Attributes

Inherited from:
CsvRecordDecoderDeriveScalaVersion
inline def summonAll[T <: Tuple]: List[CsvRecordDecoder[_]]

Attributes

Inherited from:
CsvRecordDecoderDeriveScalaVersion

Implicits

Implicits

implicit def field[T](implicit D: CsvFieldDecoder[T]): CsvRecordDecoder[T]
implicit def fieldOptional[T](implicit D: CsvFieldDecoder[T], ev: T <:!< Option[_]): CsvRecordDecoder[Option[T]]

Inherited implicits

implicit def ApplyCsvRecordDecoder[F[_[_]]](implicit env: CatsApply[F]): F[CsvRecordDecoder]

Attributes

Inherited from:
CsvRecordDecoder4
implicit def optional[T](implicit D: CsvRecordDecoder[T], ev: T <:!< Option[_]): CsvRecordDecoder[Option[T]]

Attributes

Inherited from:
CsvRecordDecoder3