object Traversal
- Source
- Traversal.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Traversal
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def apply2[S, A](get1: (S) => A, get2: (S) => A)(set: (A, A, S) => S): Traversal[S, A]
- def apply3[S, A](get1: (S) => A, get2: (S) => A, get3: (S) => A)(set: (A, A, A, S) => S): Traversal[S, A]
- 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]
- 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]
- 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]
- 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.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def fromTraverse[T[_], A](implicit arg0: Traverse[T]): Traversal[T[A], A]
create a PTraversal from a Traverse
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
Deprecated Value Members
- def codiagonal[S, T]: Traversal[Either[S, S], S]
- Annotations
- @deprecated
- Deprecated
(Since version 3.0.0-M4) use Lens.codiagonal
- def id[A]: Traversal[A, A]
- Annotations
- @deprecated
- Deprecated
(Since version 3.0.0-M2) use Iso.id
- 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