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

Method toLowerCase

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

Source from the content-addressed store, hash-verified

51 }
52
53 public static char toLowerCase(char c) {
54 if (c >= 'A' && c <= 'Z') {
55 return (char) ((c - 'A') + 'a');
56 } else {
57 return c;
58 }
59 }
60
61 public static int toLowerCase(int codePoint) {
62 if (isSupplementaryCodePoint(codePoint)) {

Callers 2

compareToIgnoreCaseMethod · 0.95
toLowerCaseMethod · 0.95

Calls 1

Tested by

no test coverage detected