o

kantan.csv

CellDecoder

object CellDecoder extends DecoderCompanion[String, DecodeError, codecs.type] with PlatformSpecificCellDecoderInstances

Provides useful methods for summoning and creating instances of CellDecoder.

Source
CellDecoder.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CellDecoder
  2. PlatformSpecificCellDecoderInstances
  3. DecoderCompanion
  4. Serializable
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. macro def apply[D](implicit ev: Decoder[String, D, DecodeError, codecs.type]): Decoder[String, D, DecodeError, codecs.type]
    Definition Classes
    DecoderCompanion
  2. def dateDecoder(format: DateFormat): CellDecoder[Date]
  3. def from[D](f: (String) => Either[DecodeError, D]): Decoder[String, D, DecodeError, codecs.type]
    Definition Classes
    DecoderCompanion
    Annotations
    @inline()
  4. def fromPartial[D](f: PartialFunction[String, Either[DecodeError, D]])(implicit t: IsError[DecodeError]): Decoder[String, D, DecodeError, codecs.type]
    Definition Classes
    DecoderCompanion
    Annotations
    @SuppressWarnings()
  5. def fromUnsafe[D](f: (String) => D)(implicit t: IsError[DecodeError]): Decoder[String, D, DecodeError, codecs.type]
    Definition Classes
    DecoderCompanion
    Annotations
    @inline()
  6. def oneOf[D](ds: Decoder[String, D, DecodeError, codecs.type]*)(implicit i: IsError[DecodeError]): Decoder[String, D, DecodeError, codecs.type]
    Definition Classes
    DecoderCompanion
    Annotations
    @inline()