UniquePath

case class UniquePath[T](path: List[String]) extends Term[T] with Path

Reifies a traversal from a Cursor to a single, possibly nullable, value.

Typically such a path would use used to identify a field of the object or interface at the focus of the cursor, to be tested via a predicate such as Eql.

Source:
predicate.scala
trait Path
trait Term[T]
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def prepend(prefix: List[String]): Path

Inherited methods

def exists(f: Term[_] => Boolean): Boolean
Inherited from:
Term
Source:
predicate.scala
def fold[Acc](acc: Acc)(f: (Acc, Term[_]) => Acc): Acc
Inherited from:
Term
Source:
predicate.scala
def forall(f: Term[_] => Boolean): Boolean
Inherited from:
Term
Source:
predicate.scala
Inherited from:
Product