Decoder

final case class Decoder[+A](run: Chunk[Byte] => Either[String, (Chunk[Byte], A)])
Companion:
object
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def flatMap[B](f: A => Decoder[B]): Decoder[B]
def loop: Decoder[Chunk[A]]
def map[B](f: A => B): Decoder[B]
def take(n: Int): Decoder[A]

Inherited methods

def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product