Tuple

final case class Tuple[A, B](leftDifference: Patch[A], rightDifference: Patch[B]) extends Patch[(A, B)]
trait Serializable
trait Product
trait Equals
trait Patch[(A, B)]
class Object
trait Matchable
class Any

Value members

Concrete methods

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

Inherited methods

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

A symbolic operator for zip.

A symbolic operator for zip.

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