o

proptics

Traversal

object Traversal

Source
Traversal.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Traversal
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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 apply[S, A](get: (S) => A)(set: (S) => (A) => S): Traversal[S, A]

    create a monomorphic Traversal from a getter/setter pair

  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. final def both[G[_, _], A](implicit arg0: Bitraverse[G]): Traversal[G[A, A], A]

    traverse both parts of a cats.Bitraverse with matching types

  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. final def drop[F[_], A](i: Int)(implicit arg0: Traverse[F]): Traversal[F[A], A]

    create a monomorphic Traversal that selects all elements of a Traverse except the first n ones

  9. final def dropWhile[G[_], A](predicate: (A) => Boolean)(implicit arg0: Traverse[G]): Traversal[G[A], A]

    create a monomorphic Traversal that drop longest prefix of elements of a Traverse that satisfy a predicate

  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. final def filter[A, B](fold: Fold[A, B]): Traversal[A, A]

    traverse elements of a Traversal, by taking the first element of a Fold and using it as a filter

  13. final def filter[A](predicate: (A) => Boolean): Traversal[A, A]

    traverse elements of a Traversal, that satisfy a predicate

  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  15. final def fromBazaar[S, A](bazaar: Bazaar[[α$51$, β$52$](α$51$) => β$52$, A, A, S, S]): Traversal[S, A]

    create a monomorphic Traversal from a proptics.internal.Bazaar

  16. final def fromTraversal[S, A](lensLikeTraversal: Rank2TypeTraversalLike[S, S, A, A]): Traversal[S, A]

    create a monomorphic Traversal from Rank2TypeTraversalLike encoding

  17. final def fromTraverse[F[_], A](implicit arg0: Traverse[F]): Traversal[F[A], A]

    create a monomorphic Traversal from a cats.Traverse

  18. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. final def id[S]: Traversal[S, S]

    monomorphic identity of a Traversal

  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. final def partsOf[S, T, A](traversal: Traversal_[S, T, A, A])(implicit ev0: Sellable[[α$55$, β$56$](α$55$) => β$56$, [β$57$, γ$58$, ε$59$]Bazaar[[α$53$, β$54$](α$53$) => β$54$, β$57$, γ$58$, Unit, ε$59$]]): Lens_[S, T, List[A], List[A]]

    convert a Traversal into a Lens over a list of the Traversal's foci

  26. final def single[F[_], A](i: Int)(implicit arg0: Traverse[F]): Traversal[F[A], A]

    create a monomorphic Traversal that narrows the focus to a single element

  27. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  28. final def take[F[_], A](i: Int)(implicit arg0: Traverse[F]): Traversal[F[A], A]

    create a monomorphic Traversal that selects the first n elements of a Traverse

  29. final def takeWhile[G[_], A](predicate: (A) => Boolean)(implicit arg0: Traverse[G]): Traversal[G[A], A]

    create a monomorphic Traversal that takes the longest prefix of elements of a Traverse that satisfy a predicate

  30. def toString(): String
    Definition Classes
    AnyRef → Any
  31. final def traversal[S, A](to: (S) => (A, (A) => S)): Traversal[S, A]

    create a monomorphic Traversal from a combined getter/setter

  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  35. final def wander[S, A](lensLike: LensLike[S, S, A, A]): Traversal[S, A]

    create a monomorphic Traversal from a rank 2 type traversal function

Inherited from AnyRef

Inherited from Any

Ungrouped