ZStreamConstructorLowPriority1

Type members

Inherited types

type WithOut[In, Out0] = ZStreamConstructor[In] { type Out = Out0; }

The type of the ZStreamConstructor with the type of the ZStream value.

The type of the ZStreamConstructor with the type of the ZStream value.

Inherited from:
ZStreamConstructorLowPriority3

Implicits

Implicits

implicit def ChunkConstructor[A]: WithOut[Chunk[A], ZStream[Any, Nothing, A]]

Constructs a ZStream[Any, Nothing, A] from a Chunk[A].

Constructs a ZStream[Any, Nothing, A] from a Chunk[A].

implicit def HubConstructor[A]: WithOut[Hub[A], ZStream[Any, Nothing, A]]

Constructs a ZStream[Any, Nothing, A] from a Hub[A].

Constructs a ZStream[Any, Nothing, A] from a Hub[A].

implicit def IterableConstructor[A, Collection <: (Iterable)]: WithOut[Collection[A], ZStream[Any, Nothing, A]]

Constructs a ZStream[Any, Nothing, A] from a Iterable[A].

Constructs a ZStream[Any, Nothing, A] from a Iterable[A].

implicit def QueueConstructor[A]: WithOut[Queue[A], ZStream[Any, Nothing, A]]

Constructs a ZStream[Any, Nothing, A] from a Queue[A].

Constructs a ZStream[Any, Nothing, A] from a Queue[A].

implicit def ZIOOptionConstructor[R, E, A]: WithOut[ZIO[R, Option[E], A], ZStream[R, E, A]]

Construct a ZStream[R, E, A] from a ZIO[R, Option[E], A].

Construct a ZStream[R, E, A] from a ZIO[R, Option[E], A].

implicit def ZIOOptionNoneConstructor[R, A]: WithOut[ZIO[R, None.type, A], ZStream[R, Nothing, A]]

Construct a ZStream[R, E, A] from a ZIO[R, Option[E], A].

Construct a ZStream[R, E, A] from a ZIO[R, Option[E], A].

implicit def ZIOOptionSomeConstructor[R, E, A]: WithOut[ZIO[R, Some[E], A], ZStream[R, E, A]]

Construct a ZStream[R, E, A] from a ZIO[R, Option[E], A].

Construct a ZStream[R, E, A] from a ZIO[R, Option[E], A].

Inherited implicits

implicit def SucceedConstructor[A]: WithOut[A, ZStream[Any, Nothing, A]]

Construct a ZStream[R, E, A] from a ZIO[R, E, A].

Construct a ZStream[R, E, A] from a ZIO[R, E, A].

Inherited from:
ZStreamConstructorLowPriority3
implicit def ZIOConstructor[R, E, A]: WithOut[ZIO[R, E, A], ZStream[R, E, A]]

Construct a ZStream[R, E, A] from a ZIO[R, E, A].

Construct a ZStream[R, E, A] from a ZIO[R, E, A].

Inherited from:
ZStreamConstructorLowPriority2