Packages

c

fs2.Stream

PureOps

final class PureOps[O] extends AnyVal

Provides syntax for pure pipes.

Source
Stream.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PureOps
  2. AnyVal
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##(): Int
    Definition Classes
    Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from PureOps[O] to any2stringadd[PureOps[O]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ++[F[_], O2 >: O](s2: ⇒ Stream[F, O2]): Stream[F, O2]
  5. def ->[B](y: B): (PureOps[O], B)
    Implicit
    This member is added by an implicit conversion from PureOps[O] to ArrowAssoc[PureOps[O]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  7. def >>[F[_], O2](s2: ⇒ Stream[F, O2]): Stream[F, O2]
  8. def append[F[_], O2 >: O](s2: ⇒ Stream[F, O2]): Stream[F, O2]
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def concurrently[F[_], O2](that: Stream[F, O2])(implicit F: Effect[F], ec: ExecutionContext): Stream[F, O]
  11. def covary[F[_]]: Stream[F, O]
  12. def covaryAll[F[_], O2 >: O]: Stream[F, O2]
  13. def either[F[_], O2](s2: Stream[F, O2])(implicit F: Effect[F], ec: ExecutionContext): Stream[F, Either[O, O2]]
  14. def ensuring(cond: (PureOps[O]) ⇒ Boolean, msg: ⇒ Any): PureOps[O]
    Implicit
    This member is added by an implicit conversion from PureOps[O] to Ensuring[PureOps[O]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: (PureOps[O]) ⇒ Boolean): PureOps[O]
    Implicit
    This member is added by an implicit conversion from PureOps[O] to Ensuring[PureOps[O]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: Boolean, msg: ⇒ Any): PureOps[O]
    Implicit
    This member is added by an implicit conversion from PureOps[O] to Ensuring[PureOps[O]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean): PureOps[O]
    Implicit
    This member is added by an implicit conversion from PureOps[O] to Ensuring[PureOps[O]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def evalMap[F[_], O2](f: (O) ⇒ F[O2]): Stream[F, O2]
  19. def evalScan[F[_], O2](z: O2)(f: (O2, O) ⇒ F[O2]): Stream[F, O2]
  20. def flatMap[F[_], O2](f: (O) ⇒ Stream[F, O2]): Stream[F, O2]
  21. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from PureOps[O] to StringFormat[PureOps[O]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  22. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  23. def handleErrorWith[F[_], O2 >: O](h: (Throwable) ⇒ Stream[F, O2]): Stream[F, O2]
  24. def interleave[F[_], O2 >: O](s2: Stream[F, O2]): Stream[F, O2]
  25. def interleaveAll[F[_], O2 >: O](s2: Stream[F, O2]): Stream[F, O2]
  26. def interruptWhen[F[_]](haltWhenTrue: Signal[F, Boolean])(implicit F: Effect[F], ec: ExecutionContext): Stream[F, O]
  27. def interruptWhen[F[_]](haltWhenTrue: Stream[F, Boolean])(implicit F: Effect[F], ec: ExecutionContext): Stream[F, O]
  28. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  29. def join[F[_], O2](maxOpen: Int)(implicit ev: <:<[O, Stream[F, O2]], F: Effect[F], ec: ExecutionContext): Stream[F, O2]
  30. def joinUnbounded[F[_], O2](implicit ev: <:<[O, Stream[F, O2]], F: Effect[F], ec: ExecutionContext): Stream[F, O2]
  31. def merge[F[_], O2 >: O](that: Stream[F, O2])(implicit F: Effect[F], ec: ExecutionContext): Stream[F, O2]
  32. def mergeHaltBoth[F[_], O2 >: O](that: Stream[F, O2])(implicit F: Effect[F], ec: ExecutionContext): Stream[F, O2]
  33. def mergeHaltL[F[_], O2 >: O](that: Stream[F, O2])(implicit F: Effect[F], ec: ExecutionContext): Stream[F, O2]
  34. def mergeHaltR[F[_], O2 >: O](that: Stream[F, O2])(implicit F: Effect[F], ec: ExecutionContext): Stream[F, O2]
  35. def observe[F[_]](sink: Sink[F, O])(implicit F: Effect[F], ec: ExecutionContext): Stream[F, O]
  36. def observe1[F[_]](f: (O) ⇒ F[Unit])(implicit F: Functor[F]): Stream[F, O]
  37. def observeAsync[F[_]](maxQueued: Int)(sink: Sink[F, O])(implicit F: Effect[F], ec: ExecutionContext): Stream[F, O]
  38. def onComplete[F[_], O2 >: O](s2: ⇒ Stream[F, O2]): Stream[F, O2]
  39. def onFinalize[F[_]](f: F[Unit])(implicit F: Applicative[F]): Stream[F, O]
  40. def pauseWhen[F[_]](pauseWhenTrue: Signal[F, Boolean])(implicit F: Effect[F], ec: ExecutionContext): Stream[F, O]
  41. def pauseWhen[F[_]](pauseWhenTrue: Stream[F, Boolean])(implicit F: Effect[F], ec: ExecutionContext): Stream[F, O]
  42. def toList: List[O]

    Runs this pure stream and returns the emitted elements in a list.

    Runs this pure stream and returns the emitted elements in a list. Note: this method is only available on pure streams.

  43. def toString(): String
    Definition Classes
    Any
  44. def toVector: Vector[O]

    Runs this pure stream and returns the emitted elements in a vector.

    Runs this pure stream and returns the emitted elements in a vector. Note: this method is only available on pure streams.

  45. def zip[F[_], O2](s2: Stream[F, O2]): Stream[F, (O, O2)]
  46. def zipAll[F[_], O2](that: Stream[F, O2])(pad1: O, pad2: O2): Stream[F, (O, O2)]
  47. def zipAllWith[F[_], O2, O3](that: Stream[F, O2])(pad1: O, pad2: O2)(f: (O, O2) ⇒ O3): Stream[F, O3]
  48. def zipWith[F[_], O2, O3](s2: Stream[F, O2])(f: (O, O2) ⇒ O3): Stream[F, O3]
  49. def [B](y: B): (PureOps[O], B)
    Implicit
    This member is added by an implicit conversion from PureOps[O] to ArrowAssoc[PureOps[O]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyVal

Inherited from Any

Inherited by implicit conversion any2stringadd from PureOps[O] to any2stringadd[PureOps[O]]

Inherited by implicit conversion StringFormat from PureOps[O] to StringFormat[PureOps[O]]

Inherited by implicit conversion Ensuring from PureOps[O] to Ensuring[PureOps[O]]

Inherited by implicit conversion ArrowAssoc from PureOps[O] to ArrowAssoc[PureOps[O]]

Ungrouped