RangeAsyncShift
Value members
Inherited methods
def aggregate[F[_], B](c: IndexedSeq[Int], m: CpsMonad[F])(z: () => F[B])(seqop: (B, Int) => F[B], combop: (B, B) => F[B]): F[B]
- Inherited from
- SeqAsyncShift
def andThen[F[_], A](f: PartialFunction[Int, Int], m: CpsMonad[F])(g: Int => F[A]): PartialFunctionCallChainSubst[F, Int, A]
- Inherited from
- PartialFunctionAsyncShiftBase
def applyOrElse[F[_], A1 <: Int, B1 >: Int](f: PartialFunction[Int, Int], m: CpsMonad[F])(x1: A1, default: A1 => F[B1]): F[B1]
- Inherited from
- PartialFunctionAsyncShiftBase
def compose[F[_], A](f: PartialFunction[Int, Int], m: CpsMonad[F])(g: A => F[Int]): PartialFunctionCallChainSubst[F, A, Int]
- Inherited from
- PartialFunctionAsyncShiftBase
def corresponds[F[_], B](c: R, monad: CpsMonad[F])(that: IterableOnce[B])(p: (Int, B) => F[Boolean]): F[Boolean]
- Inherited from
- IterableAsyncShift
def flatten[F[_], B](c: R, monad: CpsMonad[F])(asIterable: Int => F[IterableOnce[B]]): F[IndexedSeq[B]]
- Inherited from
- IterableOpsAsyncShift
def groupMap[F[_], K, B](c: R, monad: CpsMonad[F])(key: Int => F[K])(f: Int => F[B]): F[Map[K, IndexedSeq[B]]]
- Inherited from
- IterableOpsAsyncShift
def groupMapReduce[F[_], K, B](c: R, monad: CpsMonad[F])(key: Int => F[K])(f: Int => F[B])(reduce: (B, B) => F[B]): F[Map[K, B]]
- Inherited from
- IterableAsyncShift
def maxByOpOption[F[_], B](c: R, monad: CpsMonad[F])(f: Int => F[B])(cmp: (B, B) => Int): F[Option[Int]]
- Inherited from
- IterableAsyncShift
def maxByOption[F[_], B](c: R, monad: CpsMonad[F])(f: Int => F[B])(cmp: Ordering[B]): F[Option[Int]]
- Inherited from
- IterableAsyncShift
def minByOption[F[_], B](c: R, monad: CpsMonad[F])(f: Int => F[B])(cmp: Ordering[B]): F[Option[Int]]
- Inherited from
- IterableAsyncShift
def partition[F[_]](c: R, monad: CpsMonad[F])(p: Int => F[Boolean]): F[(IndexedSeq[Int], IndexedSeq[Int])]
- Inherited from
- IterableOpsAsyncShift
def partitionMap[F[_], A1, A2](c: R, monad: CpsMonad[F])(f: Int => F[Either[A1, A2]]): F[(IndexedSeq[A1], IndexedSeq[A2])]
- Inherited from
- IterableOpsAsyncShift
def reduceLeftOption[F[_], B >: Int](c: R, monad: CpsTryMonad[F])(op: (B, Int) => F[B]): F[Option[B]]
- Inherited from
- IterableAsyncShift
def reduceRightOption[F[_], B >: Int](c: R, monad: CpsTryMonad[F])(op: (Int, B) => F[B]): F[Option[B]]
- Inherited from
- IterableAsyncShift
def shiftedFold[F[_], S, B, R](c: R, monad: CpsMonad[F])(prolog: S, action: Int => F[B], acc: (S, Int, 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: R, monad: CpsMonad[F])(prolog: S, acc: (S, Int) => F[S], epilog: S => R): F[R]
- Inherited from
- IterableAsyncShift
def shiftedWhile[F[_], S, R](c: R, monad: CpsMonad[F])(prolog: S, condition: Int => F[Boolean], acc: (S, Boolean, Int) => S, epilog: S => R): F[R]
- Inherited from
- IterableAsyncShift
def span[F[_]](c: R, monad: CpsMonad[F])(p: Int => F[Boolean]): F[(IndexedSeq[Int], IndexedSeq[Int])]
- Inherited from
- IterableOpsAsyncShift
def withFilter[F[_]](c: R, m: CpsMonad[F])(p: Int => F[Boolean]): DelayedWithFilter[F, Int, [A] =>> IndexedSeq[A], R]
- Inherited from
- IterableOpsAsyncShift