ListAsyncShift

class ListAsyncShift[A] extends IterableOpsAsyncShift[A, List, List[A]] with AsyncShift[List[A]]
class IterableOpsAsyncShift[A, List, List[A]]
class IterableAsyncShift[A, List[A]]
trait AsyncShift[List[A]]
class Object
trait Matchable
class Any

Value members

Concrete methods

override def dropWhile[F[_]](c: List[A], monad: CpsMonad[F])(p: A => F[Boolean]): F[List[A]]
Definition Classes
override def map[F[_], B](c: List[A], monad: CpsMonad[F])(f: A => F[B]): F[List[B]]
Definition Classes

Inherited methods

def collect[F[_], B](c: List[A], monad: CpsMonad[F])(pf: PartialFunction[A, F[B]]): F[List[B]]
Inherited from
IterableOpsAsyncShift
def collectFirst[F[_], B](c: List[A], monad: CpsMonad[F])(pf: PartialFunction[A, F[B]]): F[Option[B]]
Inherited from
IterableAsyncShift
def corresponds[F[_], B](c: List[A], monad: CpsMonad[F])(that: IterableOnce[B])(p: (A, B) => F[Boolean]): F[Boolean]
Inherited from
IterableAsyncShift
def count[F[_]](c: List[A], monad: CpsMonad[F])(p: A => F[Boolean]): F[Int]
Inherited from
IterableAsyncShift
def exists[F[_]](c: List[A], monad: CpsMonad[F])(p: A => F[Boolean]): F[Boolean]
Inherited from
IterableAsyncShift
def filter[F[_]](c: List[A], monad: CpsMonad[F])(p: A => F[Boolean]): F[List[A]]
Inherited from
IterableOpsAsyncShift
def filterNot[F[_]](c: List[A], monad: CpsMonad[F])(p: A => F[Boolean]): F[List[A]]
Inherited from
IterableOpsAsyncShift
def find[F[_]](c: List[A], monad: CpsMonad[F])(p: A => F[Boolean]): F[Option[A]]
Inherited from
IterableAsyncShift
def flatMap[F[_], B](c: List[A], monad: CpsMonad[F])(f: A => F[IterableOnce[B]]): F[List[B]]
Inherited from
IterableOpsAsyncShift
def flatten[F[_], B](c: List[A], monad: CpsMonad[F])(asIterable: A => F[IterableOnce[B]]): F[List[B]]
Inherited from
IterableOpsAsyncShift
def fold[F[_], A1 >: A](c: List[A], monad: CpsMonad[F])(z: A1)(op: (A1, A1) => F[A1]): F[A1]
Inherited from
IterableAsyncShift
def foldLeft[F[_], B](c: List[A], monad: CpsMonad[F])(z: B)(op: (B, A) => F[B]): F[B]
Inherited from
IterableAsyncShift
def foldRight[F[_], B](c: List[A], monad: CpsMonad[F])(z: B)(op: (A, B) => F[B]): F[B]
Inherited from
IterableAsyncShift
def forall[F[_]](c: List[A], monad: CpsMonad[F])(p: A => F[Boolean]): F[Boolean]
Inherited from
IterableAsyncShift
def foreach[F[_], U](c: List[A], monad: CpsMonad[F])(f: A => F[U]): F[Unit]
Inherited from
IterableAsyncShift
def groupBy[F[_], K](c: List[A], monad: CpsMonad[F])(f: A => F[K]): F[Map[K, List[A]]]
Inherited from
IterableOpsAsyncShift
def groupMap[F[_], K, B](c: List[A], monad: CpsMonad[F])(key: A => F[K])(f: A => F[B]): F[Map[K, List[B]]]
Inherited from
IterableOpsAsyncShift
def groupMapReduce[F[_], K, B](c: List[A], monad: CpsMonad[F])(key: A => F[K])(f: A => F[B])(reduce: (B, B) => F[B]): F[Map[K, B]]
Inherited from
IterableAsyncShift
def maxBy[F[_], B](c: List[A], monad: CpsTryMonad[F])(f: A => F[B])(cmp: Ordering[B]): F[A]
Inherited from
IterableAsyncShift
def maxByOpOption[F[_], B](c: List[A], monad: CpsMonad[F])(f: A => F[B])(cmp: (B, B) => Int): F[Option[A]]
Inherited from
IterableAsyncShift
def maxByOption[F[_], B](c: List[A], monad: CpsMonad[F])(f: A => F[B])(cmp: Ordering[B]): F[Option[A]]
Inherited from
IterableAsyncShift
def minBy[F[_], B](c: List[A], monad: CpsTryMonad[F])(f: A => F[B])(cmp: Ordering[B]): F[A]
Inherited from
IterableAsyncShift
def minByOption[F[_], B](c: List[A], monad: CpsMonad[F])(f: A => F[B])(cmp: Ordering[B]): F[Option[A]]
Inherited from
IterableAsyncShift
def partition[F[_]](c: List[A], monad: CpsMonad[F])(p: A => F[Boolean]): F[(List[A], List[A])]
Inherited from
IterableOpsAsyncShift
def partitionMap[F[_], A1, A2](c: List[A], monad: CpsMonad[F])(f: A => F[Either[A1, A2]]): F[(List[A1], List[A2])]
Inherited from
IterableOpsAsyncShift
def reduce[F[_], B >: A](c: List[A], monad: CpsTryMonad[F])(op: (B, B) => F[B]): F[B]
Inherited from
IterableAsyncShift
def reduceLeft[F[_], B >: A](c: List[A], monad: CpsTryMonad[F])(op: (B, A) => F[B]): F[B]
Inherited from
IterableAsyncShift
def reduceLeftOption[F[_], B >: A](c: List[A], monad: CpsTryMonad[F])(op: (B, A) => F[B]): F[Option[B]]
Inherited from
IterableAsyncShift
def reduceOption[F[_], B >: A](c: List[A], monad: CpsTryMonad[F])(op: (B, B) => F[B]): F[Option[B]]
Inherited from
IterableAsyncShift
def reduceRight[F[_], B >: A](c: List[A], monad: CpsTryMonad[F])(op: (A, B) => F[B]): F[B]
Inherited from
IterableAsyncShift
def reduceRightOption[F[_], B >: A](c: List[A], monad: CpsTryMonad[F])(op: (A, B) => F[B]): F[Option[B]]
Inherited from
IterableAsyncShift
def scanLeft[F[_], B](c: List[A], monad: CpsMonad[F])(z: B)(op: (B, A) => F[B]): F[List[B]]
Inherited from
IterableOpsAsyncShift
def scanRight[F[_], B](c: List[A], monad: CpsMonad[F])(z: B)(op: (A, B) => F[B]): F[List[B]]
Inherited from
IterableOpsAsyncShift
def shiftedFold[F[_], S, B, R](c: List[A], 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: List[A], monad: CpsMonad[F])(prolog: S, acc: (S, A) => F[S], epilog: S => R): F[R]
Inherited from
IterableAsyncShift
def shiftedWhile[F[_], S, R](c: List[A], 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: List[A], monad: CpsMonad[F])(p: A => F[Boolean]): F[(List[A], List[A])]
Inherited from
IterableOpsAsyncShift
def takeWhile[F[_]](c: List[A], monad: CpsMonad[F])(p: A => F[Boolean]): F[List[A]]
Inherited from
IterableOpsAsyncShift
def tapEach[F[_], U](c: List[A], monad: CpsMonad[F])(f: A => F[U]): F[List[A]]
Inherited from
IterableOpsAsyncShift
def withFilter[F[_]](c: List[A], m: CpsMonad[F])(p: A => F[Boolean]): DelayedWithFilter[F, A, List, List[A]]
Inherited from
IterableOpsAsyncShift