MCPcopy Create free account
hub / github.com/ReadyTalk/avian / isLetterOrDigit

Method isLetterOrDigit

classpath/java/lang/Character.java:129–131  ·  view source on GitHub ↗
(char c)

Source from the content-addressed store, hash-verified

127 }
128
129 public static boolean isLetterOrDigit(char c) {
130 return isDigit(c) || isLetter(c);
131 }
132
133 public static boolean isLetterOrDigit(int c) {
134 return canCastToChar(c) && (isDigit((char) c) || isLetter((char) c));

Callers

nothing calls this directly

Calls 3

isDigitMethod · 0.95
isLetterMethod · 0.95
canCastToCharMethod · 0.95

Tested by

no test coverage detected