TraversalCommentBase

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

Attributes

Graph
Supertypes
class AnyVal
trait Matchable
class Any

Members list

Value members

Concrete methods

def filename: Iterator[String]

Traverse to filename property

Traverse to filename property

Attributes

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

Traverse to nodes where the filename matches the regular expression value

Traverse to nodes where the filename matches the regular expression value

Attributes

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

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

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

Attributes

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

Traverse to nodes where filename matches value exactly.

Traverse to nodes where filename matches value exactly.

Attributes

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

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

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

Attributes

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

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

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

Attributes

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

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

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

Attributes

Concrete fields

val traversal: Iterator[NodeType]