implicit final class FallibleOps[O] extends AnyVal
Ordering
- Alphabetic
- By Inheritance
Inherited
- FallibleOps
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def lift[F[_]](implicit F: ApplicativeError[F, Throwable]): Stream[F, O]
Lifts this stream to the specified effect type.
- def to(c: Collector[O]): Either[Throwable, Out]
Runs this fallible stream and returns the emitted elements in a collection of the specified type.
Runs this fallible stream and returns the emitted elements in a collection of the specified type. 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.
Runs this fallible stream and returns the emitted elements in a list. Note: this method is only available on fallible streams.
- def toString(): String
- Definition Classes
- Any
- def toVector: Either[Throwable, Vector[O]]
Runs this fallible stream and returns the emitted elements in a vector.
Runs this fallible stream and returns the emitted elements in a vector. Note: this method is only available on fallible streams.