TraversalPropertyIndex

io.shiftleft.codepropertygraph.generated.traversals.TraversalPropertyIndex
final class TraversalPropertyIndex[NodeType <: StoredNode & StaticType[HasIndexEMT]](val traversal: Iterator[NodeType]) extends AnyVal

Attributes

Graph
Supertypes
class AnyVal
trait Matchable
class Any

Members list

Value members

Concrete methods

def index: Iterator[Int]

Traverse to index property

Traverse to index property

Attributes

def index(value: Int): Iterator[NodeType]

Traverse to nodes where the index equals the given value

Traverse to nodes where the index equals the given value

Attributes

def index(values: Int*): Iterator[NodeType]

Traverse to nodes where the index equals at least one of the given values

Traverse to nodes where the index equals at least one of the given values

Attributes

def indexGt(value: Int): Iterator[NodeType]

Traverse to nodes where the index is greater than the given value

Traverse to nodes where the index is greater than the given value

Attributes

def indexGte(value: Int): Iterator[NodeType]

Traverse to nodes where the index is greater than or equal the given value

Traverse to nodes where the index is greater than or equal the given value

Attributes

def indexLt(value: Int): Iterator[NodeType]

Traverse to nodes where the index is less than the given value

Traverse to nodes where the index is less than the given value

Attributes

def indexLte(value: Int): Iterator[NodeType]

Traverse to nodes where the index is less than or equal the given value

Traverse to nodes where the index is less than or equal the given value

Attributes

def indexNot(value: Int): Iterator[NodeType]

Traverse to nodes where the index is not equal to the given value

Traverse to nodes where the index is not equal to the given value

Attributes

def indexNot(values: Int*): Iterator[NodeType]

Traverse to nodes where the index is not equal to any of the given values

Traverse to nodes where the index is not equal to any of the given values

Attributes

Concrete fields

val traversal: Iterator[NodeType]