trait AppliedFold[S, A] extends AnyRef

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AppliedFold
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def optic: Fold[S, A]
  2. abstract def value: S

Concrete Value Members

  1. def all(p: (A) => Boolean): Boolean
  2. def andThen[B](other: Fold[A, B]): AppliedFold[S, B]
  3. def exist(p: (A) => Boolean): Boolean
  4. def find(p: (A) => Boolean): Option[A]
  5. def foldMap[M](f: (A) => M)(implicit arg0: Monoid[M]): M
  6. def getAll: List[A]
  7. def headOption: Option[A]
  8. def isEmpty: Boolean
  9. def lastOption: Option[A]
  10. def length: Int
  11. def nonEmpty: Boolean
  12. def some[A1](implicit ev1: =:=[A, Option[A1]]): AppliedFold[S, A1]