FallibleOps

final class FallibleOps[O] extends AnyVal
Provides syntax for fallible streams.
class AnyVal
trait Matchable
class Any

Value members

Methods

def lift[F <: ([_$147] =>> Any)](F: ApplicativeError[F, Throwable]): Stream[F, O]
Lifts this stream to the specified effect type.
@deprecated("2.0.2", "Use .to(Chunk) instead")
def toChunk: Either[Throwable, Chunk[O]]
Runs this fallible stream and returns the emitted elements in a chunk. Note: this method is only available on fallible streams.
def toList: Either[Throwable, List[O]]
Runs this fallible stream and returns the emitted elements in a list. Note: this method is only available on fallible streams.
def toVector: Either[Throwable, Vector[O]]
Runs this fallible stream and returns the emitted elements in a vector. Note: this method is only available on fallible streams.