MCPcopy Create free account
hub / github.com/boxbeam/RedLib / isWhitespace

Method isWhitespace

src/redempt/redlib/json/JSONParser.java:54–57  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

52 }
53
54 private boolean isWhitespace() {
55 char c = peek();
56 return c < 256 && whitespace[c];
57 }
58
59 private boolean isDigit() {
60 return Character.isDigit(peek());

Callers 1

whitespaceMethod · 0.95

Calls 1

peekMethod · 0.95

Tested by

no test coverage detected