Class

scalaz.syntax

TraverseOps

Related Doc: package syntax

Permalink

final class TraverseOps[F[_], A] extends Ops[F[A]]

Wraps a value self and provides methods related to Traverse

Source
TraverseSyntax.scala
Linear Supertypes
Ops[F[A]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TraverseOps
  2. Ops
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. implicit val F: Traverse[F]

    Permalink
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  11. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def indexed: F[(Int, A)]

    Permalink
  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. final def mapAccumL[S, B](z: S)(f: (S, A) ⇒ (S, B)): (S, F[B])

    Permalink
  15. final def mapAccumR[S, B](z: S)(f: (S, A) ⇒ (S, B)): (S, F[B])

    Permalink
  16. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. final def parTraverse[G[_], B](f: (A) ⇒ G[B])(implicit F: Traverse[F], G: Par[G]): G[F[B]]

    Permalink
  20. final def reverse: F[A]

    Permalink
  21. final def runTraverseS[S, B](s: S)(f: (A) ⇒ State[S, B]): (S, F[B])

    Permalink
  22. val self: F[A]

    Permalink
    Definition Classes
    TraverseOpsOps
  23. final def sequence[G[_], B](implicit ev: ===[A, G[B]], G: Applicative[G]): G[F[B]]

    Permalink

    Traverse with the identity function

  24. final def sequenceM[G[_], B](implicit ev: ===[A, G[F[B]]], G: Applicative[G], FM: Bind[F]): G[F[B]]

    Permalink

    A version of sequence where a monadic join is applied to the inner result

  25. final def sequenceU(implicit G: Unapply[Applicative, A]): M[F[A]]

    Permalink

    A version of sequence that infers the nested type constructor

  26. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  27. final def tmap[B](f: (A) ⇒ B): F[B]

    Permalink
  28. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  29. final def traverse[G[_], B](f: (A) ⇒ G[B])(implicit G: Applicative[G]): G[F[B]]

    Permalink
  30. final def traverseKTrampoline[G[_], S, B](f: (A) ⇒ Kleisli[G, S, B])(implicit arg0: Applicative[G]): Kleisli[G, S, F[B]]

    Permalink

    A version of traverse specialized for Kleisli[G, S, B] that internally uses a Trampoline to avoid stack-overflow.

  31. final def traverseM[G[_], B](f: (A) ⇒ G[F[B]])(implicit G: Applicative[G], FM: Bind[F]): G[F[B]]

    Permalink

    A version of traverse where a subsequent monadic join is applied to the inner result.

  32. final def traverseS[S, B](f: (A) ⇒ State[S, B]): State[S, F[B]]

    Permalink

    A version of traverse specialized for State

  33. final def traverseSTrampoline[G[_], S, B](f: (A) ⇒ State[S, G[B]])(implicit arg0: Applicative[G]): State[S, G[F[B]]]

    Permalink

    A version of traverse specialized for State[S, G[B]] that internally uses a Trampoline to avoid stack-overflow.

  34. final def traverseU[GB](f: (A) ⇒ GB)(implicit G: Unapply[Applicative, GB]): M[F[A]]

    Permalink

    A version of traverse that infers the type constructor G

  35. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def zipL[B](fb: F[B]): F[(A, Option[B])]

    Permalink
  39. final def zipR[B](fb: F[B]): F[(Option[A], B)]

    Permalink
  40. final def zipWith[B, C](fb: F[B])(f: (A, Option[B]) ⇒ C): (List[B], F[C])

    Permalink
  41. final def zipWithL[B, C](fb: F[B])(f: (A, Option[B]) ⇒ C): F[C]

    Permalink
  42. final def zipWithR[B, C](fb: F[B])(f: (Option[A], B) ⇒ C): F[C]

    Permalink

Inherited from Ops[F[A]]

Inherited from AnyRef

Inherited from Any

Ungrouped