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

Method isValidCodePoint

lib/java/lang/Character.java:2046–2048  ·  view source on GitHub ↗

Indicates whether codePoint is a valid Unicode code point. @param codePoint the code point to test. @return true if codePoint is a valid Unicode code point; false otherwise. @since 1.5

(int codePoint)

Source from the content-addressed store, hash-verified

2044 * @since 1.5
2045 */
2046 public static boolean isValidCodePoint(int codePoint) {
2047 return (MIN_CODE_POINT <= codePoint && MAX_CODE_POINT >= codePoint);
2048 }
2049
2050 /**
2051 * Indicates whether {@code codePoint} is within the supplementary code

Callers 2

toCharsMethod · 0.95
ofMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected