Record

zio.schema.Patch$.Record
final case class Record[R](differences: ListMap[String, Patch[_]], schema: Record[R]) extends Patch[R]

Map of field-level diffs between two records. The map of differences is keyed to the records field names.

Attributes

Graph
Supertypes
trait Product
trait Equals
trait Patch[R]
class Object
trait Matchable
class Any
Self type

Members list

Concise view

Value members

Concrete methods

override def invert: Patch[R]

Attributes

Definition Classes
override def isComparable: Boolean

Attributes

Definition Classes
override def isIdentical: Boolean

Attributes

Definition Classes
override def patch(input: R): Either[String, R]

Attributes

Definition Classes

Inherited methods

def <*>[B](that: Patch[B]): Patch[(A, B)]

A symbolic operator for zip.

A symbolic operator for zip.

Attributes

Inherited from:
Patch

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product
def zip[B](that: Patch[B]): Patch[(A, B)]

Attributes

Inherited from:
Patch