SeqAsyncShift

class SeqAsyncShift[A, C <: ([X] =>> Seq[X] & SeqOps[X, C, C[X]]), CA <: C[A]] extends IterableOpsAsyncShift[A, C, CA] with PartialFunctionAsyncShiftBase[Int, A, CA]
class IterableOpsAsyncShift[A, C, CA]
class IterableAsyncShift[A, CA]
trait AsyncShift[CA]
class Object
trait Matchable
class Any
class IndexedSeqAsyncShift[A, C, CA]

Value members

Concrete methods

def advanceIterator(c: CA, from: Int): (Iterator[A], Int)
def aggregate[F[_], B](c: C[A], m: CpsMonad[F])(z: () => F[B])(seqop: (B, A) => F[B], combop: (B, B) => F[B]): F[B]
def distinctBy[F[_], B](c: CA, m: CpsMonad[F])(f: A => F[B]): F[C[A]]
def indexWhere[F[_]](c: CA, m: CpsMonad[F])(p: A => F[Boolean], from: Int): F[Int]
def indexWhere[F[_]](c: CA, m: CpsMonad[F])(p: A => F[Boolean]): F[Int]
def segmentLength[F[_]](c: CA, m: CpsMonad[F])(p: A => F[Boolean], from: Int): F[Int]
def segmentLength[F[_]](c: CA, m: CpsMonad[F])(p: A => F[Boolean]): F[Int]

Inherited methods

def andThen[F[_], A](f: PartialFunction[Int, A], m: CpsMonad[F])(g: A => F[A]): PartialFunctionCallChainSubst[F, Int, A]
def applyOrElse[F[_], A1 <: Int, B1 >: A](f: PartialFunction[Int, A], m: CpsMonad[F])(x1: A1, default: A1 => F[B1]): F[B1]
def collect[F[_], B](c: CA, monad: CpsMonad[F])(pf: PartialFunction[A, F[B]]): F[C[B]]
Inherited from
IterableOpsAsyncShift
def collectFirst[F[_], B](c: CA, monad: CpsMonad[F])(pf: PartialFunction[A, F[B]]): F[Option[B]]
Inherited from
IterableAsyncShift
def compose[F[_], A](f: PartialFunction[Int, A], m: CpsMonad[F])(g: A => F[Int]): PartialFunctionCallChainSubst[F, A, A]
def corresponds[F[_], B](c: CA, monad: CpsMonad[F])(that: IterableOnce[B])(p: (A, B) => F[Boolean]): F[Boolean]
Inherited from
IterableAsyncShift
def count[F[_]](c: CA, monad: CpsMonad[F])(p: A => F[Boolean]): F[Int]
Inherited from
IterableAsyncShift
def dropWhile[F[_]](c: CA, monad: CpsMonad[F])(p: A => F[Boolean]): F[C[A]]
Inherited from
IterableOpsAsyncShift
def exists[F[_]](c: CA, monad: CpsMonad[F])(p: A => F[Boolean]): F[Boolean]
Inherited from
IterableAsyncShift
def filter[F[_]](c: CA, monad: CpsMonad[F])(p: A => F[Boolean]): F[C[A]]
Inherited from
IterableOpsAsyncShift
def filterNot[F[_]](c: CA, monad: CpsMonad[F])(p: A => F[Boolean]): F[C[A]]
Inherited from
IterableOpsAsyncShift
def find[F[_]](c: CA, monad: CpsMonad[F])(p: A => F[Boolean]): F[Option[A]]
Inherited from
IterableAsyncShift
def flatMap[F[_], B](c: CA, monad: CpsMonad[F])(f: A => F[IterableOnce[B]]): F[C[B]]
Inherited from
IterableOpsAsyncShift
def flatten[F[_], B](c: CA, monad: CpsMonad[F])(asIterable: A => F[IterableOnce[B]]): F[C[B]]
Inherited from
IterableOpsAsyncShift
def fold[F[_], A1 >: A](c: CA, monad: CpsMonad[F])(z: A1)(op: (A1, A1) => F[A1]): F[A1]
Inherited from
IterableAsyncShift
def foldLeft[F[_], B](c: CA, monad: CpsMonad[F])(z: B)(op: (B, A) => F[B]): F[B]
Inherited from
IterableAsyncShift
def foldRight[F[_], B](c: CA, monad: CpsMonad[F])(z: B)(op: (A, B) => F[B]): F[B]
Inherited from
IterableAsyncShift
def forall[F[_]](c: CA, monad: CpsMonad[F])(p: A => F[Boolean]): F[Boolean]
Inherited from
IterableAsyncShift
def foreach[F[_], U](c: CA, monad: CpsMonad[F])(f: A => F[U]): F[Unit]
Inherited from
IterableAsyncShift
def groupBy[F[_], K](c: CA, monad: CpsMonad[F])(f: A => F[K]): F[Map[K, C[A]]]
Inherited from
IterableOpsAsyncShift
def groupMap[F[_], K, B](c: CA, monad: CpsMonad[F])(key: A => F[K])(f: A => F[B]): F[Map[K, C[B]]]
Inherited from
IterableOpsAsyncShift
def groupMapReduce[F[_], K, B](c: CA, monad: CpsMonad[F])(key: A => F[K])(f: A => F[B])(reduce: (B, B) => F[B]): F[Map[K, B]]
Inherited from
IterableAsyncShift
def map[F[_], B](c: CA, monad: CpsMonad[F])(f: A => F[B]): F[C[B]]
Inherited from
IterableOpsAsyncShift
def maxBy[F[_], B](c: CA, monad: CpsTryMonad[F])(f: A => F[B])(cmp: Ordering[B]): F[A]
Inherited from
IterableAsyncShift
def maxByOpOption[F[_], B](c: CA, monad: CpsMonad[F])(f: A => F[B])(cmp: (B, B) => Int): F[Option[A]]
Inherited from
IterableAsyncShift
def maxByOption[F[_], B](c: CA, monad: CpsMonad[F])(f: A => F[B])(cmp: Ordering[B]): F[Option[A]]
Inherited from
IterableAsyncShift
def minBy[F[_], B](c: CA, monad: CpsTryMonad[F])(f: A => F[B])(cmp: Ordering[B]): F[A]
Inherited from
IterableAsyncShift
def minByOption[F[_], B](c: CA, monad: CpsMonad[F])(f: A => F[B])(cmp: Ordering[B]): F[Option[A]]
Inherited from
IterableAsyncShift
def partition[F[_]](c: CA, monad: CpsMonad[F])(p: A => F[Boolean]): F[(C[A], C[A])]
Inherited from
IterableOpsAsyncShift
def partitionMap[F[_], A1, A2](c: CA, monad: CpsMonad[F])(f: A => F[Either[A1, A2]]): F[(C[A1], C[A2])]
Inherited from
IterableOpsAsyncShift
def reduce[F[_], B >: A](c: CA, monad: CpsTryMonad[F])(op: (B, B) => F[B]): F[B]
Inherited from
IterableAsyncShift
def reduceLeft[F[_], B >: A](c: CA, monad: CpsTryMonad[F])(op: (B, A) => F[B]): F[B]
Inherited from
IterableAsyncShift
def reduceLeftOption[F[_], B >: A](c: CA, monad: CpsTryMonad[F])(op: (B, A) => F[B]): F[Option[B]]
Inherited from
IterableAsyncShift
def reduceOption[F[_], B >: A](c: CA, monad: CpsTryMonad[F])(op: (B, B) => F[B]): F[Option[B]]
Inherited from
IterableAsyncShift
def reduceRight[F[_], B >: A](c: CA, monad: CpsTryMonad[F])(op: (A, B) => F[B]): F[B]
Inherited from
IterableAsyncShift
def reduceRightOption[F[_], B >: A](c: CA, monad: CpsTryMonad[F])(op: (A, B) => F[B]): F[Option[B]]
Inherited from
IterableAsyncShift
def scanLeft[F[_], B](c: CA, monad: CpsMonad[F])(z: B)(op: (B, A) => F[B]): F[C[B]]
Inherited from
IterableOpsAsyncShift
def scanRight[F[_], B](c: CA, monad: CpsMonad[F])(z: B)(op: (A, B) => F[B]): F[C[B]]
Inherited from
IterableOpsAsyncShift
def shiftedFold[F[_], S, B, R](c: CA, monad: CpsMonad[F])(prolog: S, action: A => F[B], acc: (S, A, B) => S, epilog: S => R): F[R]

sequentially do action. each action is started after prev. is finished

sequentially do action. each action is started after prev. is finished

Inherited from
IterableAsyncShift
def shiftedStateFold[F[_], S, R](c: CA, monad: CpsMonad[F])(prolog: S, acc: (S, A) => F[S], epilog: S => R): F[R]
Inherited from
IterableAsyncShift
def shiftedWhile[F[_], S, R](c: CA, monad: CpsMonad[F])(prolog: S, condition: A => F[Boolean], acc: (S, Boolean, A) => S, epilog: S => R): F[R]
Inherited from
IterableAsyncShift
def span[F[_]](c: CA, monad: CpsMonad[F])(p: A => F[Boolean]): F[(C[A], C[A])]
Inherited from
IterableOpsAsyncShift
def takeWhile[F[_]](c: CA, monad: CpsMonad[F])(p: A => F[Boolean]): F[C[A]]
Inherited from
IterableOpsAsyncShift
def tapEach[F[_], U](c: CA, monad: CpsMonad[F])(f: A => F[U]): F[C[A]]
Inherited from
IterableOpsAsyncShift
def withFilter[F[_]](c: CA, m: CpsMonad[F])(p: A => F[Boolean]): DelayedWithFilter[F, A, C, CA]
Inherited from
IterableOpsAsyncShift