enum DynTypedMatcher::VariadicOperator

Description

Construct from a variadic function.

Declared at: clang/include/clang/ASTMatchers/ASTMatchersInternal.h:420

Enumerators

NameValueComment
VO_AllOf0Matches nodes for which all provided matchers match.
VO_AnyOf1Matches nodes for which at least one of the provided matchers matches.
VO_EachOf2Matches nodes for which at least one of the provided matchers matches, but doesn't stop at the first match.
VO_Optionally3Matches any node but executes all inner matchers to find result bindings.
VO_UnaryNot4Matches nodes that do not match the provided matcher.Uses the variadic matcher interface, but fails if InnerMatchers.size() != 1.