o

monocle

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. def apply2[S, A](get1: (S) => A, get2: (S) => A)(set: (A, A, S) => S): Traversal[S, A]
  5. def apply3[S, A](get1: (S) => A, get2: (S) => A, get3: (S) => A)(set: (A, A, A, S) => S): Traversal[S, A]
  6. def apply4[S, A](get1: (S) => A, get2: (S) => A, get3: (S) => A, get4: (S) => A)(set: (A, A, A, A, S) => S): Traversal[S, A]
  7. def apply5[S, A](get1: (S) => A, get2: (S) => A, get3: (S) => A, get4: (S) => A, get5: (S) => A)(set: (A, A, A, A, A, S) => S): Traversal[S, A]
  8. def apply6[S, A](get1: (S) => A, get2: (S) => A, get3: (S) => A, get4: (S) => A, get5: (S) => A, get6: (S) => A)(set: (A, A, A, A, A, A, S) => S): Traversal[S, A]
  9. def applyN[S, A](xs: Optional[S, A]*): Traversal[S, A]

    Merge multiple Optionals together.

    Merge multiple Optionals together. All Optional must target different piece of data otherwise the Traversal doesn't respect all properties. See this thread for more details: https://github.com/julien-truffaut/Monocle/issues/379#issuecomment-236374838.

  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  15. def fromTraverse[T[_], A](implicit arg0: Traverse[T]): Traversal[T[A], A]

    create a PTraversal from a Traverse

  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. def codiagonal[S, T]: Traversal[Either[S, S], S]
    Annotations
    @deprecated
    Deprecated

    (Since version 3.0.0-M4) use Lens.codiagonal

  2. def id[A]: Traversal[A, A]
    Annotations
    @deprecated
    Deprecated

    (Since version 3.0.0-M2) use Iso.id

  3. def void[S, A]: Traversal[S, A]

    Traversal that points to nothing

    Traversal that points to nothing

    Annotations
    @deprecated
    Deprecated

    (Since version 3.0.0-M2) use Optional.void

Inherited from AnyRef

Inherited from Any

Ungrouped