TraversalCallreprBase

io.shiftleft.codepropertygraph.generated.traversals.TraversalCallreprBase
final class TraversalCallreprBase[NodeType <: CallReprBase](val traversal: Iterator[NodeType]) extends AnyVal

Attributes

Graph
Supertypes
class AnyVal
trait Matchable
class Any

Members list

Value members

Concrete methods

def name: Iterator[String]

Traverse to name property

Traverse to name property

Attributes

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

Traverse to nodes where the name matches the regular expression value

Traverse to nodes where the name matches the regular expression value

Attributes

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

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

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

Attributes

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

Traverse to nodes where name matches value exactly.

Traverse to nodes where name matches value exactly.

Attributes

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

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

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

Attributes

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

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

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

Attributes

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

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

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

Attributes

def signature: Iterator[String]

Traverse to signature property

Traverse to signature property

Attributes

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

Traverse to nodes where the signature matches the regular expression value

Traverse to nodes where the signature matches the regular expression value

Attributes

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

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

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

Attributes

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

Traverse to nodes where signature matches value exactly.

Traverse to nodes where signature matches value exactly.

Attributes

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

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

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

Attributes

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

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

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

Attributes

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

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

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

Attributes

Concrete fields

val traversal: Iterator[NodeType]