final case class IndexedFoldsOps[I, S, T, A](indexedFold: IndexedFold_[I, S, T, A, A]) extends AnyVal with Product with Serializable
- Source
- IndexedFoldSyntax.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- IndexedFoldsOps
- Serializable
- Product
- Equals
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new IndexedFoldsOps(indexedFold: IndexedFold_[I, S, T, A, A])
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def filter(predicate: ((A, I)) => Boolean): IndexedFold_[I, S, T, A, A]
traverse elements of an IndexedFold_ whose index satisfy a predicate
- def filterByIndex(predicate: (I) => Boolean): IndexedFold_[I, S, T, A, A]
traverse elements of an IndexedFold_ whose index satisfy a predicate applied on the index
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- def index(i: I)(implicit ev: Eq[I]): Fold_[S, T, A, A]
combine an index and an IndexedFold_ to narrow the focus to a single element
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def productElementNames: Iterator[String]
- Definition Classes
- Product