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

Method isLetter

classpath/java/lang/Character.java:121–123  ·  view source on GitHub ↗
(int c)

Source from the content-addressed store, hash-verified

119 }
120
121 public static boolean isLetter(int c) {
122 return canCastToChar(c) && isLetter((char) c);
123 }
124
125 public static boolean isLetter(char c) {
126 return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z');

Callers 2

isLetterOrDigitMethod · 0.95
isJavaIdentifierStartMethod · 0.95

Calls 1

canCastToCharMethod · 0.95

Tested by

no test coverage detected