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

Method read

output/java_guava/1.4.19/BaseEncoding.java:986–993  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

984 checkNotNull(toIgnore);
985 return new Reader() {
986 @Override
987 public int read() throws IOException {
988 int readChar;
989 do {
990 readChar = delegate.read();
991 } while (readChar != -1 && toIgnore.matches((char) readChar));
992 return readChar;
993 }
994
995 @Override
996 public int read(char[] cbuf, int off, int len) throws IOException {

Callers 1

readMethod · 0.45

Calls 1

matchesMethod · 0.45

Tested by

no test coverage detected