implicit class ProducerTransducerOps[R, A] extends AnyRef
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ProducerTransducerOps
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new ProducerTransducerOps(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
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def drop(n: Int): Producer[R, A]
- def dropRight(n: Int): Producer[R, A]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def first: Producer[R, A]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def intersperse(a: A): Producer[R, A]
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def last: Producer[R, A]
- 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 producerState[B, S](start: S, last: Option[(S) => Producer[R, B]] = None)(f: (A, S) => (Producer[R, B], S)): Producer[R, B]
- def receiveOption[B]: Producer[R, Option[A]]
- def receiveOr[B](f: (A) => Producer[R, B])(or: => Producer[R, B]): Producer[R, B]
- def reduce(f: (A, A) => A): Producer[R, A]
- def reduceMap[B](f: (A) => B)(implicit arg0: Monoid[B]): Producer[R, B]
- def reduceMonoid(implicit monoid: Monoid[A]): Producer[R, A]
- def reduceSemigroup(implicit semi: Semigroup[A]): Producer[R, A]
- def scan[B](start: B)(f: (B, A) => B): Producer[R, B]
- def scan1(f: (A, A) => A): Producer[R, A]
- def state[B, S](start: S)(f: (A, S) => (B, S)): Producer[R, B]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def take(n: Int): Producer[R, A]
- def takeWhile(f: (A) => Boolean): Producer[R, A]
- 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 zipWithIndex: Producer[R, (A, Int)]
- def zipWithNext: Producer[R, (A, Option[A])]
- def zipWithNextN(n: Int): Producer[R, (A, List[A])]
- def zipWithPrevious: Producer[R, (Option[A], A)]
- def zipWithPreviousAndNext: Producer[R, (Option[A], A, Option[A])]
- def zipWithPreviousAndNextN(n: Int): Producer[R, (List[A], A, List[A])]
- def zipWithPreviousN(n: Int): Producer[R, (List[A], A)]