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

Method appendCodePoint

lib/java/lang/StringBuilder.java:322–325  ·  view source on GitHub ↗

Appends the encoded Unicode code point. The code point is converted to a char[] as defined by Character#toChars(int). @param codePoint the Unicode code point to encode and append. @return this builder. @see Character#toChars(int)

(int codePoint)

Source from the content-addressed store, hash-verified

320 * @see Character#toChars(int)
321 */
322 public StringBuilder appendCodePoint(int codePoint) {
323 append0(Character.toChars(codePoint));
324 return this;
325 }
326
327 /**
328 * Deletes a sequence of characters specified by {@code start} and {@code

Callers

nothing calls this directly

Calls 2

toCharsMethod · 0.95
append0Method · 0.80

Tested by

no test coverage detected