final case class FoldElementOps[S, T, A](fold: Fold_[S, T, A, A]) extends AnyVal with Product with Serializable
- Source
- FoldSyntax.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- FoldElementOps
- Serializable
- Product
- Equals
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
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 drop(i: Int): Fold_[S, T, A, A]
select all elements of a Fold_ except first n ones
- def dropWhile(predicate: (A) => Boolean): Fold_[S, T, A, A]
drop longest prefix of elements of a Fold_ that satisfy a predicate
- def filterByIndex(predicate: (Int) => Boolean): Fold_[S, T, A, A]
traverse elements of a Fold_ whose index satisfy a predicate
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def single(i: Int): Fold_[S, T, A, A]
narrow the focus of a Fold_ to a single element
- def take(i: Int): Fold_[S, T, A, A]
select the first n elements of a Fold_
- def takeWhile(predicate: (A) => Boolean): Fold_[S, T, A, A]
take longest prefix of elements of a Fold_ that satisfy a predicate