Pair

case class Pair[T, U, TU](left: EndpointIO[T], right: EndpointIO[U], combine: CombineParams, split: SplitParams) extends EndpointIO[TU] with Pair[TU]
trait Serializable
trait Product
trait Equals
trait Pair[TU]
trait EndpointIO[TU]
trait EndpointOutput[TU]
trait EndpointInput[TU]
class Object
trait Matchable
class Any

Value members

Concrete methods

override def map[V](m: Mapping[TU, V]): EndpointIO[V]
Definition Classes

Inherited methods

def /[U, TU](other: EndpointInput[U])(implicit concat: Aux[TU, U, TU]): EndpointInput[TU]
Inherited from:
EndpointInput
def and[J, IJ](other: EndpointIO[J])(implicit concat: Aux[TU, J, IJ]): EndpointIO[IJ]
Inherited from:
EndpointIO
def and[J, IJ](other: EndpointOutput[J])(implicit concat: Aux[TU, J, IJ]): EndpointOutput[IJ]
Inherited from:
EndpointOutput
def and[U, TU](other: EndpointInput[U])(implicit concat: Aux[TU, U, TU]): EndpointInput[TU]
Inherited from:
EndpointInput
def map[U](f: TU => U)(g: U => TU): EndpointIO[U]
Inherited from:
EndpointTransput
def mapDecode[U](f: TU => DecodeResult[U])(g: U => TU): EndpointIO[U]
Inherited from:
EndpointTransput
inline def mapTo[CASE_CLASS <: Product](using mc: ProductOf[CASE_CLASS]): EndpointIO[CASE_CLASS]
Inherited from:
EndpointTransputMacros
def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product
override def show: String
Definition Classes
Inherited from:
Pair
def validate(v: Validator[TU]): EndpointIO[TU]
Inherited from:
EndpointTransput