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

Method isLowerCase

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

Source from the content-addressed store, hash-verified

135 }
136
137 public static boolean isLowerCase(int c) {
138 return canCastToChar(c) && isLowerCase((char) c);
139 }
140
141 public static boolean isLowerCase(char c) {
142 return (c >= 'a' && c <= 'z');

Callers

nothing calls this directly

Calls 1

canCastToCharMethod · 0.95

Tested by

no test coverage detected