trait Transducers extends AnyRef

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Transducers
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  6. def drop[R, A](n: Int)(implicit arg0: eff.all._Safe[R]): Transducer[R, A, A]
  7. def dropRight[R, A](n: Int)(implicit arg0: eff.all._Safe[R]): Transducer[R, A, A]
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. def filter[R, A, B](f: (A) ⇒ Boolean)(implicit arg0: eff.all._Safe[R]): Transducer[R, A, A]
  11. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. def first[R, A](implicit arg0: eff.all._Safe[R]): Transducer[R, A, A]
  13. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. def id[R, A, B](implicit arg0: eff.all._Safe[R]): Transducer[R, A, A]
  16. def intersperse[R, A](in: A)(implicit arg0: eff.all._Safe[R]): Transducer[R, A, A]
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def last[R, A](implicit arg0: eff.all._Safe[R]): Transducer[R, A, A]
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. def producerState[R, A, B, S](start: S, last: Option[(S) ⇒ Producer[R, B]] = None)(f: (A, S) ⇒ (Producer[R, B], S))(implicit arg0: eff.all._Safe[R]): Transducer[R, A, B]
  23. def producerStateEff[R, A, B, S](start: S, last: Option[(S) ⇒ Producer[R, B]] = None)(f: (A, S) ⇒ Eff[R, (Producer[R, B], S)])(implicit arg0: eff.all._Safe[R]): Transducer[R, A, B]
  24. def receive[R, A, B](f: (A) ⇒ Producer[R, B])(implicit arg0: eff.all._Safe[R]): Transducer[R, A, B]
  25. def receiveOption[R, A, B](implicit arg0: eff.all._Safe[R]): Transducer[R, A, Option[A]]
  26. def receiveOr[R, A, B](f: (A) ⇒ Producer[R, B])(or: ⇒ Producer[R, B])(implicit arg0: eff.all._Safe[R]): Transducer[R, A, B]
  27. def reduce[R, A](f: (A, A) ⇒ A)(implicit arg0: eff.all._Safe[R]): Transducer[R, A, A]
  28. def reduceMap[R, A, B](f: (A) ⇒ B)(implicit arg0: eff.all._Safe[R], arg1: Monoid[B]): Transducer[R, A, B]
  29. def reduceMapEval[R, A, B](f: (A) ⇒ Eff[R, B])(implicit arg0: eff.all._Safe[R], arg1: Monoid[B]): Transducer[R, A, B]
  30. def reduceMonoid[R, A](implicit arg0: eff.all._Safe[R], arg1: Monoid[A]): Transducer[R, A, A]
  31. def reduceSemigroup[R, A](implicit arg0: eff.all._Safe[R], arg1: Semigroup[A]): Transducer[R, A, A]
  32. def scan[R, A, B](start: B)(f: (B, A) ⇒ B)(implicit arg0: eff.all._Safe[R]): Transducer[R, A, B]
  33. def scan1[R, A](f: (A, A) ⇒ A)(implicit arg0: eff.all._Safe[R]): Transducer[R, A, A]
  34. def state[R, A, B, S](start: S)(f: (A, S) ⇒ (B, S))(implicit arg0: eff.all._Safe[R]): Transducer[R, A, B]
  35. def stateEff[R, A, B, S](start: S)(f: (A, S) ⇒ (Eff[R, B], S))(implicit arg0: eff.all._Safe[R]): Transducer[R, A, Eff[R, B]]
  36. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  37. def take[R, A](n: Int)(implicit arg0: eff.all._Safe[R]): Transducer[R, A, A]
  38. def takeWhile[R, A](f: (A) ⇒ Boolean)(implicit arg0: eff.all._Safe[R]): Transducer[R, A, A]
  39. def toString(): String
    Definition Classes
    AnyRef → Any
  40. def transducer[R, A, B](f: (A) ⇒ B)(implicit arg0: eff.all._Safe[R]): Transducer[R, A, B]
  41. def transducerEval[R, A, B](f: (A) ⇒ Eff[R, B])(implicit arg0: eff.all._Safe[R]): Transducer[R, A, B]
  42. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  45. def zipWithIndex[R, A](implicit arg0: eff.all._Safe[R]): Transducer[R, A, (A, Int)]
  46. def zipWithNext[R, A](implicit arg0: eff.all._Safe[R]): Transducer[R, A, (A, Option[A])]
  47. def zipWithNextN[R, A](n: Int)(implicit arg0: eff.all._Safe[R]): Transducer[R, A, (A, List[A])]
  48. def zipWithPrevious[R, A](implicit arg0: eff.all._Safe[R]): Transducer[R, A, (Option[A], A)]
  49. def zipWithPreviousAndNext[R, A](implicit arg0: eff.all._Safe[R]): Transducer[R, A, (Option[A], A, Option[A])]
  50. def zipWithPreviousAndNextN[R, A](n: Int)(implicit arg0: eff.all._Safe[R]): Transducer[R, A, (List[A], A, List[A])]
  51. def zipWithPreviousN[R, A](n: Int)(implicit arg0: eff.all._Safe[R]): Transducer[R, A, (List[A], A)]
  52. def zipWithState[R, A, B](b: B)(f: (A, B) ⇒ B)(implicit arg0: eff.all._Safe[R]): Transducer[R, A, (A, B)]

Inherited from AnyRef

Inherited from Any

Ungrouped