Decoder

abstract class Decoder[T, +R]
Companion:
object
Source:
Decoder.scala
class Object
trait Matchable
class Any
Decoder[T, R]

Value members

Abstract methods

def apply(t: T): Either[String, R]

Concrete methods

final def emap[RR](f: R => Either[String, RR]): Decoder[T, RR]
final def map[RR](f: R => RR): Decoder[T, RR]
final def orElse[RR >: R](dec: Decoder[T, RR]): Decoder[T, RR]