MCPcopy Create free account
hub / github.com/davidgiven/luje / isSupplementaryCodePoint

Method isSupplementaryCodePoint

lib/java/lang/Character.java:2060–2062  ·  view source on GitHub ↗

Indicates whether codePoint is within the supplementary code point range. @param codePoint the code point to test. @return true if codePoint is within the supplementary code point range; false otherwise. @since 1.5

(int codePoint)

Source from the content-addressed store, hash-verified

2058 * @since 1.5
2059 */
2060 public static boolean isSupplementaryCodePoint(int codePoint) {
2061 return (MIN_SUPPLEMENTARY_CODE_POINT <= codePoint && MAX_CODE_POINT >= codePoint);
2062 }
2063
2064 /**
2065 * Indicates whether {@code ch} is a high- (or leading-) surrogate code unit

Callers 1

toCharsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected