Packages

trait Wrapper[T] extends AnyRef

If you want to hang RLP decode/encode methods off of a companion object, have it implement Wrapper[T], where T is the type to de encoded/decode.

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Wrapper
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract val serializer: RLPSerializing[T]

Concrete Value Members

  1. def decodeCompleteRLP(bytes: Seq[Byte]): Failable[T]
  2. def decodeRLP(bytes: Seq[Byte]): (Failable[T], Seq[Byte])
  3. def encodeRLP(rlpSerializable: T): Seq[Byte]
  4. def fromRLPElement(element: Basic): Failable[T]
  5. def toRLPElement(rlpSerializable: T): Element