case class Success[A](zipper: Zipper[A], origin: Zipper[A]) extends MoveResult[A] with Product with Serializable
- Alphabetic
- By Inheritance
- Success
- Serializable
- Product
- Equals
- MoveResult
- AnyRef
- Any
- Hide All
- Show All
- 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
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def flatMap(move: Move[A]): MoveResult[A]
Try another move on the resulting zipper, if the current move did not fail
Try another move on the resulting zipper, if the current move did not fail
- Definition Classes
- MoveResult
- def get: Zipper[A]
Obtain the resulting zipper or throw an exception if the move failed
Obtain the resulting zipper or throw an exception if the move failed
- Definition Classes
- MoveResult
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- def getOrElse(other: Zipper[A]): Zipper[A]
Try another zipper if the current move failed
Try another zipper if the current move failed
- Definition Classes
- MoveResult
- def getOrElse(other: (Zipper[A]) => Zipper[A]): Zipper[A]
Try another safe move if the current move failed
Try another safe move if the current move failed
- Definition Classes
- MoveResult
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def map(f: (Zipper[A]) => Zipper[A]): MoveResult[A]
Safely move the resulting zipper, if the current move did not fail
Safely move the resulting zipper, if the current move did not fail
- Definition Classes
- MoveResult
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- def orElse(other: => MoveResult[A]): MoveResult[A]
Try a result of another move if the current move failed
Try a result of another move if the current move failed
- Definition Classes
- MoveResult
- def orElse(other: Move[A]): MoveResult[A]
Try another move if the current move failed
Try another move if the current move failed
- Definition Classes
- MoveResult
- def orStay: Zipper[A]
Obtain the resulting zipper or the original zipper in case the move failed
Obtain the resulting zipper or the original zipper in case the move failed
- Definition Classes
- MoveResult
- val origin: Zipper[A]
The starting point of the move
The starting point of the move
- Definition Classes
- Success → MoveResult
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toOption: Option[Zipper[A]]
Obtain the resulting zipper or None if the move failed
Obtain the resulting zipper or None if the move failed
- Definition Classes
- MoveResult
- 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])
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- def withOrigin(origin: Zipper[A]): Product with MoveResult[A] with Serializable
Change the starting point of the move
Change the starting point of the move
- Definition Classes
- MoveResult
- val zipper: Zipper[A]
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)