Dictionary

dynosaur.Schema.structure.Dictionary
case class Dictionary[A](value: Schema[A]) extends Schema[Map[String, A]]

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait Schema[Map[String, A]]
class Object
trait Matchable
class Any
Show all

Members list

Value members

Inherited methods

def asList: Schema[List[A]]

Attributes

Inherited from:
Schema
def asMap: Schema[Map[String, A]]

Attributes

Inherited from:
Schema
def asSeq: Schema[Seq[A]]

Attributes

Inherited from:
Schema
def asVector: Schema[Vector[A]]

Attributes

Inherited from:
Schema
def imap[B](f: Map[String, A] => B)(g: B => Map[String, A]): Schema[B]

Attributes

Inherited from:
Schema
def imapErr[B](f: Map[String, A] => Either[ReadError, B])(g: B => Map[String, A]): Schema[B]

Attributes

Inherited from:
Schema
def nullable: Schema[Option[A]]

Attributes

Inherited from:
Schema
def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product
def read(v: DynamoValue): Either[ReadError, A]

Attributes

Inherited from:
Schema
def tag(name: String): Schema[A]

Attributes

Inherited from:
Schema
def write(a: Map[String, A]): Either[WriteError, DynamoValue]

Attributes

Inherited from:
Schema
def xmap[B](f: Map[String, A] => Either[ReadError, B])(g: B => Either[WriteError, Map[String, A]]): Schema[B]

Attributes

Inherited from:
Schema