final
class
TraverseOps[F[_], A] extends Ops[F[A]]
Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: Any): Boolean
-
implicit
val
F: Traverse[F]
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
-
-
def
finalize(): Unit
-
final
def
getClass(): Class[_]
-
def
hashCode(): Int
-
final
def
indexed: F[(Int, A)]
-
final
def
isInstanceOf[T0]: Boolean
-
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
notify(): Unit
-
final
def
notifyAll(): Unit
-
final
def
reverse: F[A]
-
final
def
runTraverseS[S, B](s: S)(f: (A) ⇒ State[S, B]): (S, F[B])
-
val
self: F[A]
-
final
def
sequence[G[_], B](implicit ev: ===[A, G[B]], G: Applicative[G]): G[F[B]]
-
final
def
sequenceU(implicit G: Unapply[Applicative, A]): M[F[A]]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
final
def
tmap[B](f: (A) ⇒ B): F[B]
-
def
toString(): String
-
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]]
-
final
def
traverseM[G[_], B](f: (A) ⇒ G[F[B]])(implicit G: Applicative[G], FM: Bind[F]): G[F[B]]
-
final
def
traverseS[S, B](f: (A) ⇒ State[S, B]): State[S, F[B]]
-
final
def
traverseSTrampoline[G[_], S, B](f: (A) ⇒ State[S, G[B]])(implicit arg0: Applicative[G]): State[S, G[F[B]]]
-
final
def
traverseU[GB](f: (A) ⇒ GB)(implicit G: Unapply[Applicative, GB]): M[F[A]]
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
-
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]
Wraps a value
self
and provides methods related toTraverse