final class TraverseOps[F[_], A] extends Ops[F[A]]
Wraps a value self
and provides methods related to Traverse
- Source
- TraverseSyntax.scala
- Alphabetic
- By Inheritance
- TraverseOps
- Ops
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- implicit val F: Traverse[F]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def indexed: F[(Int, A)]
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def mapAccumL[S, B](z: S)(f: (S, A) => (S, B)): (S, F[B])
- final def mapAccumR[S, B](z: S)(f: (S, A) => (S, B)): (S, F[B])
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def parTraverse[G[_], B](f: (A) => G[B])(implicit F: Traverse[F], G: Par[G]): G[F[B]]
- final def reverse: F[A]
- final def runTraverseS[S, B](s: S)(f: (A) => State[S, B]): (S, F[B])
- val self: F[A]
- Definition Classes
- TraverseOps → Ops
- final def sequence[G[_], B](implicit ev: ===[A, G[B]], G: Applicative[G]): G[F[B]]
Traverse with the identity function
- final def sequenceM[G[_], B](implicit ev: ===[A, G[F[B]]], G: Applicative[G], FM: Bind[F]): G[F[B]]
A version of
sequence
where a monadic join is applied to the inner result - final def sequenceU(implicit G: Unapply[Applicative, A]): M[F[A]]
A version of
sequence
that infers the nested type constructor - final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- final def tmap[B](f: (A) => B): F[B]
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def traverse[G[_], B](f: (A) => G[B])(implicit G: Applicative[G]): G[F[B]]
- final def traverseKTrampoline[G[_], S, B](f: (A) => Kleisli[G, S, B])(implicit arg0: Applicative[G]): Kleisli[G, S, F[B]]
A version of
traverse
specialized forKleisli[G, S, B]
that internally uses aTrampoline
to avoid stack-overflow. - final def traverseM[G[_], B](f: (A) => G[F[B]])(implicit G: Applicative[G], FM: Bind[F]): G[F[B]]
A version of
traverse
where a subsequent monadic join is applied to the inner result. - final def traverseS[S, B](f: (A) => State[S, B]): State[S, F[B]]
A version of
traverse
specialized forState
- final def traverseSTrampoline[G[_], S, B](f: (A) => State[S, G[B]])(implicit arg0: Applicative[G]): State[S, G[F[B]]]
A version of
traverse
specialized forState[S, G[B]]
that internally uses aTrampoline
to avoid stack-overflow. - final def traverseU[GB](f: (A) => GB)(implicit G: Unapply[Applicative, GB]): M[F[A]]
A version of
traverse
that infers the type constructorG
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def zipL[B](fb: F[B]): F[(A, Option[B])]
- final def zipR[B](fb: F[B]): F[(Option[A], B)]
- final def zipWith[B, C](fb: F[B])(f: (A, Option[B]) => C): (List[B], F[C])
- final def zipWithL[B, C](fb: F[B])(f: (A, Option[B]) => C): F[C]
- final def zipWithR[B, C](fb: F[B])(f: (Option[A], B) => C): F[C]