ListPath

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

Reifies a traversal from a Cursor to multiple, possibly nullable, values.

Typically such a path would use used to identify the list of values of an attribute of the object elements of a list field of the object or interface at the focus of the cursor, to be tested via a predicate such as In.

trait Path
trait Term[List[T]]
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def apply(c: Cursor): Result[List[T]]
def children: List[Term[_]]
def prepend(prefix: List[String]): Path

Inherited methods

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