TraversalPropertySymbol

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

Attributes

Graph
Supertypes
class AnyVal
trait Matchable
class Any

Members list

Value members

Concrete methods

def symbol: Iterator[String]

Traverse to symbol property

Traverse to symbol property

Attributes

def symbol(pattern: String): Iterator[NodeType]

Traverse to nodes where the symbol matches the regular expression value

Traverse to nodes where the symbol matches the regular expression value

Attributes

def symbol(patterns: String*): Iterator[NodeType]

Traverse to nodes where the symbol matches at least one of the regular expressions in values

Traverse to nodes where the symbol matches at least one of the regular expressions in values

Attributes

def symbolExact(value: String): Iterator[NodeType]

Traverse to nodes where symbol matches value exactly.

Traverse to nodes where symbol matches value exactly.

Attributes

def symbolExact(values: String*): Iterator[NodeType]

Traverse to nodes where symbol matches one of the elements in values exactly.

Traverse to nodes where symbol matches one of the elements in values exactly.

Attributes

def symbolNot(pattern: String): Iterator[NodeType]

Traverse to nodes where symbol does not match the regular expression value.

Traverse to nodes where symbol does not match the regular expression value.

Attributes

def symbolNot(patterns: String*): Iterator[NodeType]

Traverse to nodes where symbol does not match any of the regular expressions in values.

Traverse to nodes where symbol does not match any of the regular expressions in values.

Attributes

Concrete fields

val traversal: Iterator[NodeType]