createNotMatcher<T> static method
Implementation
static SelectorMatcher<T> createNotMatcher<T>(
List<CssSelector> notSelectors,
T cbContext,
) {
var notMatcher = SelectorMatcher<T>();
notMatcher.addSelectables(notSelectors, cbContext);
return notMatcher;
}