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

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Tuple3
  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 Tuple3(_1: Input[A], _2: Input[B], _3: Input[C])

Value Members

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