MCPcopy
hub / github.com/libgdx/libgdx / appendCodePoint

Method appendCodePoint

gdx/src/com/badlogic/gdx/utils/CharArray.java:1204–1207  ·  view source on GitHub ↗

Appends the encoded Unicode code point. The code point is converted to a char[] as defined by Character#toChars(int). @see Character#toChars(int)

(int codePoint)

Source from the content-addressed store, hash-verified

1202 * {@link Character#toChars(int)}.
1203 * @see Character#toChars(int) */
1204 public CharArray appendCodePoint (int codePoint) {
1205 append(Character.toChars(codePoint));
1206 return this;
1207 }
1208
1209 /** Gets the contents of this CharArray as a Reader.
1210 * <p>

Callers 1

unicodeTestMethod · 0.95

Calls 1

appendMethod · 0.95

Tested by 1

unicodeTestMethod · 0.76