final case class Tuple2[-A, -B](_1: Input[A], _2: Input[B]) extends Input[(A, B)] with Product with Serializable

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Tuple2
  2. Serializable
  3. Product
  4. Equals
  5. Input
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Tuple2(_1: Input[A], _2: Input[B])

Value Members

  1. val _1: Input[A]
  2. val _2: Input[B]
  3. final def contramap[B](f: (B) => (A, B)): Input[B]
    Definition Classes
    Input
  4. def encode(data: (A, B))(implicit codec: Codec): Chunk[BulkString]
    Definition Classes
    Tuple2Input
  5. def productElementNames: Iterator[String]
    Definition Classes
    Product