Tuple3Encoder

class Tuple3Encoder[A, B, C](a: Encoder[A], b: Encoder[B], c: Encoder[C]) extends Encoder[(A, B, C)]
trait Encoder[(A, B, C)]
class Object
trait Matchable
class Any

Value members

Concrete methods

override def encode(schema: Schema): (A, B, C) => Any
Definition Classes

Inherited methods

final def contramap[U](f: U => (A, B, C)): Encoder[U]

Returns an [[Encoder[U]] by applying a function that maps a U to an T, before encoding as an T using this encoder.

Returns an [[Encoder[U]] by applying a function that maps a U to an T, before encoding as an T using this encoder.

Inherited from
Encoder