implicit class ProducerOps[R, A] extends AnyRef
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ProducerOps
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new ProducerOps(p: Producer[R, A])(implicit arg0: eff.all._Safe[R])
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def >(p2: Producer[R, A]): Producer[R, A]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def chunk(n: Int): Producer[R, A]
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def filter(f: (A) => Boolean): Producer[R, A]
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def fold[S, B](f: Fold[[β$0$]Eff[R, β$0$], A, B]): Eff[R, B]
- def fold[B, S](start: Eff[R, S], f: (S, A) => Eff[R, S], end: (S) => Eff[R, B]): Eff[R, B]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def into[U](implicit intoPoly: IntoPoly[R, U], s: eff.all._Safe[U]): Producer[U, A]
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def observe[S](start: Eff[R, S], f: (S, A) => S, end: (S) => Eff[R, Unit]): Producer[R, A]
- def pipe[B](t: Transducer[R, A, B]): Producer[R, B]
- def repeat: Producer[R, A]
- def runLast: Eff[R, Option[A]]
- def runList: Eff[R, List[A]]
- def sliding(n: Int): Producer[R, List[A]]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def |>[B](t: Transducer[R, A, B]): Producer[R, B]