FailedNode

trait FailedNode extends Failed
trait Failed
trait CursorResult[Nothing]
class Object
trait Matchable
class Any

Value members

Inherited methods

def attempt[U]: CursorResult[Either[Failed, U]]
Inherited from:
CursorResult
def attemptOption[U]: CursorResult[Option[U]]

Lift the result to Option[T], any error is mapped as None

Lift the result to Option[T], any error is mapped as None

Inherited from:
CursorResult
def flatMap[U](f: Nothing => CursorResult[U]): CursorResult[U]
Inherited from:
CursorResult
def fold[U](ifFocused: Nothing => U)(ifFailed: Failed => U): U
Inherited from:
CursorResult
def map[U](f: Nothing => U): CursorResult[U]
Inherited from:
CursorResult
def recover[U](f: Failed => U): CursorResult[U]
Inherited from:
CursorResult
Inherited from:
CursorResult
def toOption[U]: Option[U]

Return an Option which contains a value only if the result is Focused

Return an Option which contains a value only if the result is Focused

Inherited from:
CursorResult
override def toString: String
Definition Classes
Inherited from:
CursorResult

Inherited fields

val path: String
Inherited from:
Failed