Tuple

zio.schema.Patch$.Tuple
final case class Tuple[A, B](leftDifference: Patch[A], rightDifference: Patch[B]) extends Patch[(A, B)]

Attributes

Graph
Supertypes
trait Product
trait Equals
trait Patch[(A, B)]
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Concrete methods

override def invert: Patch[(A, B)]

Attributes

Definition Classes
override def isIdentical: Boolean

Attributes

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

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:
Patch

Attributes

Inherited from:
Product

Attributes

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

Attributes

Inherited from:
Patch