Combiner

zio.http.codec.Combiner
See theCombiner companion object
sealed trait Combiner[L, R]

A combiner is a type class responsible for combining invariant type parameters using a tuple. It is used to compose the parameters of the zio.http.codec.HttpCodec data type.

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Type members

Types

type Out

Value members

Abstract methods

def combine(l: L, r: R): Out
def separate(out: Out): (L, R)