transducers

object transducers extends Transducers
class Object
trait Matchable
class Any

Value members

Inherited methods

def drop[R : _Safe, A](n: Int): (R, A) => A
Inherited from:
Transducers
def dropRight[R : _Safe, A](n: Int): (R, A) => A
Inherited from:
Transducers
def filter[R : _Safe, A, B](f: A => Boolean): (R, A) => A
Inherited from:
Transducers
def first[R : _Safe, A]: (R, A) => A
Inherited from:
Transducers
def id[R : _Safe, A, B]: (R, A) => A
Inherited from:
Transducers
def intersperse[R : _Safe, A](in: A): (R, A) => A
Inherited from:
Transducers
def last[R : _Safe, A]: (R, A) => A
Inherited from:
Transducers
def producerState[R : _Safe, A, B, S](start: S, last: Option[S => Producer[R, B]])(f: (A, S) => (Producer[R, B], S)): (R, A) => B
Inherited from:
Transducers
def producerStateEff[R : _Safe, A, B, S](start: S, last: Option[S => Producer[R, B]])(f: (A, S) => Eff[R, (Producer[R, B], S)]): (R, A) => B
Inherited from:
Transducers
def receive[R : _Safe, A, B](f: A => Producer[R, B]): (R, A) => B
Inherited from:
Transducers
def receiveOption[R : _Safe, A, B]: (R, A) => Option[A]
Inherited from:
Transducers
def receiveOr[R : _Safe, A, B](f: A => Producer[R, B])(or: => Producer[R, B]): (R, A) => B
Inherited from:
Transducers
def reduce[R : _Safe, A](f: (A, A) => A): (R, A) => A
Inherited from:
Transducers
def reduceMap[R : _Safe, A, B : Monoid](f: A => B): (R, A) => B
Inherited from:
Transducers
def reduceMapEval[R : _Safe, A, B : Monoid](f: A => Eff[R, B]): (R, A) => B
Inherited from:
Transducers
def reduceMonoid[R : _Safe, A : Monoid]: (R, A) => A
Inherited from:
Transducers
def reduceSemigroup[R : _Safe, A : Semigroup]: (R, A) => A
Inherited from:
Transducers
def scan[R : _Safe, A, B](start: B)(f: (B, A) => B): (R, A) => B
Inherited from:
Transducers
def scan1[R : _Safe, A](f: (A, A) => A): (R, A) => A
Inherited from:
Transducers
def state[R : _Safe, A, B, S](start: S)(f: (A, S) => (B, S)): (R, A) => B
Inherited from:
Transducers
def stateEff[R : _Safe, A, B, S](start: S)(f: (A, S) => (Eff[R, B], S)): (R, A) => Eff[R, B]
Inherited from:
Transducers
def take[R : _Safe, A](n: Int): (R, A) => A
Inherited from:
Transducers
def takeWhile[R : _Safe, A](f: A => Boolean): (R, A) => A
Inherited from:
Transducers
def transducer[R : _Safe, A, B](f: A => B): (R, A) => B
Inherited from:
Transducers
def transducerEval[R : _Safe, A, B](f: A => Eff[R, B]): (R, A) => B
Inherited from:
Transducers
def zipWithIndex[R : _Safe, A]: (R, A) => (A, Int)
Inherited from:
Transducers
def zipWithNext[R : _Safe, A]: (R, A) => (A, Option[A])
Inherited from:
Transducers
def zipWithNextN[R : _Safe, A](n: Int): (R, A) => (A, List[A])
Inherited from:
Transducers
def zipWithPrevious[R : _Safe, A]: (R, A) => (Option[A], A)
Inherited from:
Transducers
def zipWithPreviousAndNext[R : _Safe, A]: (R, A) => (Option[A], A, Option[A])
Inherited from:
Transducers
def zipWithPreviousAndNextN[R : _Safe, A](n: Int): (R, A) => (List[A], A, List[A])
Inherited from:
Transducers
def zipWithPreviousN[R : _Safe, A](n: Int): (R, A) => (List[A], A)
Inherited from:
Transducers
def zipWithState[R : _Safe, A, B](b: B)(f: (A, B) => B): (R, A) => (A, B)
Inherited from:
Transducers