MCPcopy Create free account
hub / github.com/antlr/codebuff / noneOf

Method noneOf

corpus/java/training/guava/base/CharMatcher.java:412–414  ·  view source on GitHub ↗

Returns a char matcher that matches any character not present in the given character sequence.

(CharSequence sequence)

Source from the content-addressed store, hash-verified

410 * sequence.
411 */
412 public static CharMatcher noneOf(CharSequence sequence) {
413 return anyOf(sequence).negate();
414 }
415
416 /**
417 * Returns a {@code char} matcher that matches any character in a given range (both endpoints are

Callers 4

MediaTypeClass · 0.95
getMethod · 0.45
newEnumSetMethod · 0.45
ErrorManagerClass · 0.45

Calls 2

anyOfMethod · 0.95
negateMethod · 0.45

Tested by

no test coverage detected