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

Method isHighSurrogate

classpath/java/lang/Character.java:165–167  ·  view source on GitHub ↗
(char ch)

Source from the content-addressed store, hash-verified

163 }
164
165 public static boolean isHighSurrogate(char ch) {
166 return ch >= '\uD800' && ch <= '\uDBFF';
167 }
168
169 public static boolean isLowSurrogate(char ch) {
170 return ch >= '\uDC00' && ch <= '\uDFFF';

Callers 3

isSurrogatePairMethod · 0.95
codePointAtMethod · 0.95
codePointCountMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected