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.

trait Serializable
trait Product
trait Equals
trait Patch[R]
class Object
trait Matchable
class Any

Value members

Concrete methods

override def invert: Patch[R]
Definition Classes
override def isComparable: Boolean
Definition Classes
override def isIdentical: Boolean
Definition Classes
override def patch(input: R): Either[String, R]
Definition Classes

Inherited methods

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

A symbolic operator for zip.

A symbolic operator for zip.

Inherited from:
Patch
def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product
def zip[B](that: Patch[B]): Patch[(R, B)]
Inherited from:
Patch