trait TraverseWithIndex[F[_], I] extends FoldableWithIndex[F, I] with FunctorWithIndex[F, I]
- Annotations
- @implicitNotFound()
- Source
- TraverseWithIndex.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- TraverseWithIndex
- FunctorWithIndex
- FoldableWithIndex
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract def exists[A](fa: F[A])(f: (A) => Boolean): Boolean
- Definition Classes
- FoldableWithIndex
- abstract def foldLeftWithIndex[A, B](f: (B, (A, I)) => B)(fa: F[A], b: B): B
- Definition Classes
- FoldableWithIndex
- abstract def foldRightWithIndex[A, B](f: ((A, I), Eval[B]) => Eval[B])(fa: F[A], lb: Eval[B]): Eval[B]
- Definition Classes
- FoldableWithIndex
- abstract def mapWithIndex[A, B](f: (A, I) => B)(fa: F[A]): F[B]
- Definition Classes
- FunctorWithIndex
- abstract def traverse[G[_], A, B](fa: F[A])(f: (A) => G[B])(implicit arg0: Applicative[G]): G[F[B]]
Concrete 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
- 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])
- def foldLeft[A, B](fa: F[A], b: B)(f: (B, A) => B): B
- Definition Classes
- FoldableWithIndex
- def foldMap[A, B](fa: F[A])(f: (A) => B)(implicit B: Monoid[B]): B
- Definition Classes
- FoldableWithIndex
- final def foldMapWithIndex[A, B](f: (A, I) => B)(fa: F[A])(implicit ev: Monoid[B]): B
- Definition Classes
- FoldableWithIndex
- def foldRight[A, B](fa: F[A], lb: Eval[B])(f: (A, Eval[B]) => Eval[B]): Eval[B]
- Definition Classes
- FoldableWithIndex
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def isEmpty[A](fa: F[A]): Boolean
- Definition Classes
- FoldableWithIndex
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def map[A, B](fa: F[A])(f: (A) => B): F[B]
- Definition Classes
- FunctorWithIndex
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def nonEmpty[A](fa: F[A]): Boolean
- Definition Classes
- FoldableWithIndex
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def sequence[G[_], A](fga: F[G[A]])(implicit arg0: Applicative[G]): G[F[A]]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def traverseWithIndex[G[_], A, B](f: (A, I) => G[B])(fa: F[A])(implicit arg0: Applicative[G]): G[F[B]]
- 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()