DecodeResult

scodec.DecodeResult
case class DecodeResult[+A](value: A, remainder: BitVector)

Result of a decoding operation, which consists of the decoded value and the remaining bits that were not consumed by decoding.

Attributes

Source:
DecodeResult.scala
Graph
Supertypes
trait Product
trait Equals
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Concrete methods

def map[B](f: A => B): DecodeResult[B]

Maps the supplied function over the decoded value.

Maps the supplied function over the decoded value.

Attributes

Source:
DecodeResult.scala

Maps the supplied function over the remainder.

Maps the supplied function over the remainder.

Attributes

Source:
DecodeResult.scala

Inherited methods

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product