Packages

trait TraverseWithIndex[F[_], I] extends FoldableWithIndex[F, I] with FunctorWithIndex[F, I]

Annotations
@implicitNotFound()
Source
TraverseWithIndex.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TraverseWithIndex
  2. FunctorWithIndex
  3. FoldableWithIndex
  4. Serializable
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def exists[A](fa: F[A])(f: (A) => Boolean): Boolean
    Definition Classes
    FoldableWithIndex
  2. abstract def foldLeftWithIndex[A, B](f: (B, (A, I)) => B)(fa: F[A], b: B): B
    Definition Classes
    FoldableWithIndex
  3. abstract def foldRightWithIndex[A, B](f: ((A, I), Eval[B]) => Eval[B])(fa: F[A], lb: Eval[B]): Eval[B]
    Definition Classes
    FoldableWithIndex
  4. abstract def mapWithIndex[A, B](f: (A, I) => B)(fa: F[A]): F[B]
    Definition Classes
    FunctorWithIndex
  5. abstract def traverse[G[_], A, B](fa: F[A])(f: (A) => G[B])(implicit arg0: Applicative[G]): G[F[B]]

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. def foldLeft[A, B](fa: F[A], b: B)(f: (B, A) => B): B
    Definition Classes
    FoldableWithIndex
  10. def foldMap[A, B](fa: F[A])(f: (A) => B)(implicit B: Monoid[B]): B
    Definition Classes
    FoldableWithIndex
  11. final def foldMapWithIndex[A, B](f: (A, I) => B)(fa: F[A])(implicit ev: Monoid[B]): B
    Definition Classes
    FoldableWithIndex
  12. def foldRight[A, B](fa: F[A], lb: Eval[B])(f: (A, Eval[B]) => Eval[B]): Eval[B]
    Definition Classes
    FoldableWithIndex
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. def isEmpty[A](fa: F[A]): Boolean
    Definition Classes
    FoldableWithIndex
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. def map[A, B](fa: F[A])(f: (A) => B): F[B]
    Definition Classes
    FunctorWithIndex
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def nonEmpty[A](fa: F[A]): Boolean
    Definition Classes
    FoldableWithIndex
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. def sequence[G[_], A](fga: F[G[A]])(implicit arg0: Applicative[G]): G[F[A]]
  23. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. def traverseWithIndex[G[_], A, B](f: (A, I) => G[B])(fa: F[A])(implicit arg0: Applicative[G]): G[F[B]]
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from FunctorWithIndex[F, I]

Inherited from FoldableWithIndex[F, I]

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped