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

Method isSupplementaryCodePoint

classpath/java/lang/Character.java:200–202  ·  view source on GitHub ↗
(int codePoint)

Source from the content-addressed store, hash-verified

198 }
199
200 public static boolean isSupplementaryCodePoint(int codePoint) {
201 return codePoint >= 0x10000 && codePoint <= 0x10FFFF;
202 }
203
204 private static boolean canCastToChar(int codePoint) {
205 return (codePoint >= 0 && codePoint <= 0xFFFF);

Callers 3

toLowerCaseMethod · 0.95
toUpperCaseMethod · 0.95
toCharsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected