IndexedSeqAsyncShift

cps.runtime.IndexedSeqAsyncShift
class IndexedSeqAsyncShift[A, C <: ([X] =>> IndexedSeq[X] & IndexedSeqOps[X, C, C[X]]), CA <: C[A]] extends SeqAsyncShift[A, C, CA]

Attributes

Source
SeqAsyncShift.scala
Graph
Supertypes
class SeqAsyncShift[A, C, CA]
trait PartialFunctionAsyncShiftBase[Int, A, CA]
class IterableOpsAsyncShift[A, C, CA]
class IterableAsyncShift[A, CA]
trait AsyncShift[CA]
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

override def indexWhere[F[_]](c: CA, m: CpsMonad[F])(p: A => F[Boolean], from: Int): F[Int]

Attributes

Definition Classes
Source
SeqAsyncShift.scala
override def indexWhere[F[_]](c: CA, m: CpsMonad[F])(p: A => F[Boolean]): F[Int]

Attributes

Definition Classes
Source
SeqAsyncShift.scala
override def segmentLength[F[_]](c: CA, m: CpsMonad[F])(p: A => F[Boolean], from: Int): F[Int]

Attributes

Definition Classes
Source
SeqAsyncShift.scala
override def segmentLength[F[_]](c: CA, m: CpsMonad[F])(p: A => F[Boolean]): F[Int]

Attributes

Definition Classes
Source
SeqAsyncShift.scala

Inherited methods

def _cpsWithFilterSubst(ca: CA, predicate: A => Boolean): WithFilterSubstAsyncShift[A, C, CA]

Attributes

Inherited from:
IterableOpsAsyncShift
Source
IterableAsyncShift.scala
def advanceIterator(c: CA, from: Int): (Iterator[A], Int)

Attributes

Inherited from:
SeqAsyncShift
Source
SeqAsyncShift.scala
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]

Attributes

Inherited from:
SeqAsyncShift
Source
SeqAsyncShift.scala
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]]

Attributes

Inherited from:
IterableOpsAsyncShift
Source
IterableAsyncShift.scala
def collectFirst[F[_], B](c: CA, monad: CpsMonad[F])(pf: PartialFunction[A, F[B]]): F[Option[B]]

Attributes

Inherited from:
IterableAsyncShift
Source
IterableAsyncShift.scala
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]

Attributes

Inherited from:
IterableAsyncShift
Source
IterableAsyncShift.scala
def count[F[_]](c: CA, monad: CpsMonad[F])(p: A => F[Boolean]): F[Int]

Attributes

Inherited from:
IterableAsyncShift
Source
IterableAsyncShift.scala
def distinctBy[F[_], B](c: CA, m: CpsMonad[F])(f: A => F[B]): F[C[A]]

Attributes

Inherited from:
SeqAsyncShift
Source
SeqAsyncShift.scala
def dropWhile[F[_]](c: CA, monad: CpsMonad[F])(p: A => F[Boolean]): F[C[A]]

Attributes

Inherited from:
IterableOpsAsyncShift
Source
IterableAsyncShift.scala
def exists[F[_]](c: CA, monad: CpsMonad[F])(p: A => F[Boolean]): F[Boolean]

Attributes

Inherited from:
IterableAsyncShift
Source
IterableAsyncShift.scala
def filter[F[_]](c: CA, monad: CpsMonad[F])(p: A => F[Boolean]): F[C[A]]

Attributes

Inherited from:
IterableOpsAsyncShift
Source
IterableAsyncShift.scala
def filterNot[F[_]](c: CA, monad: CpsMonad[F])(p: A => F[Boolean]): F[C[A]]

Attributes

Inherited from:
IterableOpsAsyncShift
Source
IterableAsyncShift.scala
def find[F[_]](c: CA, monad: CpsMonad[F])(p: A => F[Boolean]): F[Option[A]]

Attributes

Inherited from:
IterableAsyncShift
Source
IterableAsyncShift.scala
def flatMap[F[_], B](c: CA, monad: CpsMonad[F])(f: A => F[IterableOnce[B]]): F[C[B]]

Attributes

Inherited from:
IterableOpsAsyncShift
Source
IterableAsyncShift.scala
def flatten[F[_], B](c: CA, monad: CpsMonad[F])(implicit asIterable: A => F[IterableOnce[B]]): F[C[B]]

Attributes

Inherited from:
IterableOpsAsyncShift
Source
IterableAsyncShift.scala
def fold[F[_], A1 >: A](c: CA, monad: CpsMonad[F])(z: A1)(op: (A1, A1) => F[A1]): F[A1]

Attributes

Inherited from:
IterableAsyncShift
Source
IterableAsyncShift.scala
def foldLeft[F[_], B](c: CA, monad: CpsMonad[F])(z: B)(op: (B, A) => F[B]): F[B]

Attributes

Inherited from:
IterableAsyncShift
Source
IterableAsyncShift.scala
def foldRight[F[_], B](c: CA, monad: CpsMonad[F])(z: B)(op: (A, B) => F[B]): F[B]

Attributes

Inherited from:
IterableAsyncShift
Source
IterableAsyncShift.scala
def forall[F[_]](c: CA, monad: CpsMonad[F])(p: A => F[Boolean]): F[Boolean]

Attributes

Inherited from:
IterableAsyncShift
Source
IterableAsyncShift.scala
def foreach[F[_], U](c: CA, monad: CpsMonad[F])(f: A => F[U]): F[Unit]

Attributes

Inherited from:
IterableAsyncShift
Source
IterableAsyncShift.scala
def groupBy[F[_], K](c: CA, monad: CpsMonad[F])(f: A => F[K]): F[Map[K, C[A]]]

Attributes

Inherited from:
IterableOpsAsyncShift
Source
IterableAsyncShift.scala
def groupMap[F[_], K, B](c: CA, monad: CpsMonad[F])(key: A => F[K])(f: A => F[B]): F[Map[K, C[B]]]

Attributes

Inherited from:
IterableOpsAsyncShift
Source
IterableAsyncShift.scala
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]]

Attributes

Inherited from:
IterableAsyncShift
Source
IterableAsyncShift.scala
def map[F[_], B](c: CA, monad: CpsMonad[F])(f: A => F[B]): F[C[B]]

Attributes

Inherited from:
IterableOpsAsyncShift
Source
IterableAsyncShift.scala
def maxBy[F[_], B](c: CA, monad: CpsTryMonad[F])(f: A => F[B])(implicit cmp: Ordering[B]): F[A]

Attributes

Inherited from:
IterableAsyncShift
Source
IterableAsyncShift.scala
def maxByOpOption[F[_], B](c: CA, monad: CpsMonad[F])(f: A => F[B])(cmp: (B, B) => Int): F[Option[A]]

Attributes

Inherited from:
IterableAsyncShift
Source
IterableAsyncShift.scala
def maxByOption[F[_], B](c: CA, monad: CpsMonad[F])(f: A => F[B])(implicit cmp: Ordering[B]): F[Option[A]]

Attributes

Inherited from:
IterableAsyncShift
Source
IterableAsyncShift.scala
def minBy[F[_], B](c: CA, monad: CpsTryMonad[F])(f: A => F[B])(implicit cmp: Ordering[B]): F[A]

Attributes

Inherited from:
IterableAsyncShift
Source
IterableAsyncShift.scala
def minByOption[F[_], B](c: CA, monad: CpsMonad[F])(f: A => F[B])(implicit cmp: Ordering[B]): F[Option[A]]

Attributes

Inherited from:
IterableAsyncShift
Source
IterableAsyncShift.scala
def partition[F[_]](c: CA, monad: CpsMonad[F])(p: A => F[Boolean]): F[(C[A], C[A])]

Attributes

Inherited from:
IterableOpsAsyncShift
Source
IterableAsyncShift.scala
def partitionMap[F[_], A1, A2](c: CA, monad: CpsMonad[F])(f: A => F[Either[A1, A2]]): F[(C[A1], C[A2])]

Attributes

Inherited from:
IterableOpsAsyncShift
Source
IterableAsyncShift.scala
def reduce[F[_], B >: A](c: CA, monad: CpsTryMonad[F])(op: (B, B) => F[B]): F[B]

Attributes

Inherited from:
IterableAsyncShift
Source
IterableAsyncShift.scala
def reduceLeft[F[_], B >: A](c: CA, monad: CpsTryMonad[F])(op: (B, A) => F[B]): F[B]

Attributes

Inherited from:
IterableAsyncShift
Source
IterableAsyncShift.scala
def reduceLeftOption[F[_], B >: A](c: CA, monad: CpsTryMonad[F])(op: (B, A) => F[B]): F[Option[B]]

Attributes

Inherited from:
IterableAsyncShift
Source
IterableAsyncShift.scala
def reduceOption[F[_], B >: A](c: CA, monad: CpsTryMonad[F])(op: (B, B) => F[B]): F[Option[B]]

Attributes

Inherited from:
IterableAsyncShift
Source
IterableAsyncShift.scala
def reduceRight[F[_], B >: A](c: CA, monad: CpsTryMonad[F])(op: (A, B) => F[B]): F[B]

Attributes

Inherited from:
IterableAsyncShift
Source
IterableAsyncShift.scala
def reduceRightOption[F[_], B >: A](c: CA, monad: CpsTryMonad[F])(op: (A, B) => F[B]): F[Option[B]]

Attributes

Inherited from:
IterableAsyncShift
Source
IterableAsyncShift.scala
def scanLeft[F[_], B](c: CA, monad: CpsMonad[F])(z: B)(op: (B, A) => F[B]): F[C[B]]

Attributes

Inherited from:
IterableOpsAsyncShift
Source
IterableAsyncShift.scala
def scanRight[F[_], B](c: CA, monad: CpsMonad[F])(z: B)(op: (A, B) => F[B]): F[C[B]]

Attributes

Inherited from:
IterableOpsAsyncShift
Source
IterableAsyncShift.scala
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

Attributes

Inherited from:
IterableAsyncShift
Source
IterableAsyncShift.scala
def shiftedStateFold[F[_], S, R](c: CA, monad: CpsMonad[F])(prolog: S, acc: (S, A) => F[S], epilog: S => R): F[R]

Attributes

Inherited from:
IterableAsyncShift
Source
IterableAsyncShift.scala
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]

Attributes

Inherited from:
IterableAsyncShift
Source
IterableAsyncShift.scala
def span[F[_]](c: CA, monad: CpsMonad[F])(p: A => F[Boolean]): F[(C[A], C[A])]

Attributes

Inherited from:
IterableOpsAsyncShift
Source
IterableAsyncShift.scala
def takeWhile[F[_]](c: CA, monad: CpsMonad[F])(p: A => F[Boolean]): F[C[A]]

Attributes

Inherited from:
IterableOpsAsyncShift
Source
IterableAsyncShift.scala
def tapEach[F[_], U](c: CA, monad: CpsMonad[F])(f: A => F[U]): F[C[A]]

Attributes

Inherited from:
IterableOpsAsyncShift
Source
IterableAsyncShift.scala
def withFilter[F[_]](c: CA, m: CpsMonad[F])(p: A => F[Boolean]): DelayedWithFilter[F, A, C, CA]

Attributes

Inherited from:
IterableOpsAsyncShift
Source
IterableAsyncShift.scala