codec

kreuzberg.extras.forms.RecursiveFormFields.Leaf.codec
object codec extends Codec[EmptyTuple, List[String]]

Attributes

Graph
Supertypes
trait Codec[EmptyTuple, List[String]]
class Object
trait Matchable
class Any
Self type
codec.type

Members list

Value members

Concrete methods

override def decode(encoded: List[String]): DecodingResult[EmptyTuple]

Decodes the value, either an error or the decoded value.

Decodes the value, either an error or the decoded value.

Attributes

Definition Classes
override def encode(value: EmptyTuple): List[String]

Encodes a value into a string.

Encodes a value into a string.

Attributes

Definition Classes

Inherited methods

final def decodeOrThrow(transport: List[String]): EmptyTuple

Decode a value or throw.

Decode a value or throw.

Attributes

Inherited from:
Codec
def xmap[V](mapFn: EmptyTuple => V, contraMapFn: V => EmptyTuple): Codec[V, List[String]]

Maps the encoded type to another type.

Maps the encoded type to another type.

Attributes

Inherited from:
Codec