Combiner

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

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

Attributes

Companion:
object
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Concise view

Type members

Types

type Out

Value members

Abstract methods

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