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

Method noneOf

output/java_guava/1.4.13/CharMatcher.java:461–463  ·  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

459
460
461 public static CharMatcher noneOf(CharSequence sequence) {
462 return anyOf(sequence).negate();
463 }
464
465 /**
466 * Returns a {@code char} matcher that matches any character in a given range (both endpoints are

Callers

nothing calls this directly

Calls 2

anyOfMethod · 0.95
negateMethod · 0.45

Tested by

no test coverage detected