ZStreamConstructor

trait ZStreamConstructor[Input]

A ZStreamConstructor[Input] knows how to construct a ZStream value from an input of type Input. This allows the type of the ZStream value constructed to depend on Input.

Companion:
object
class Object
trait Matchable
class Any

Type members

Types

type Out

The type of the ZStream value.

The type of the ZStream value.

Value members

Abstract methods

def make(input: => Input)(implicit trace: Trace): Out

Constructs a ZStream value from the specified input.

Constructs a ZStream value from the specified input.