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

Method appendCodePoint

lib/java/lang/StringBuffer.java:331–333  ·  view source on GitHub ↗

Appends the string representation of the specified Unicode code point to the end of this buffer. 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 StringBuffer. @see

(int codePoint)

Source from the content-addressed store, hash-verified

329 * @since 1.5
330 */
331 public StringBuffer appendCodePoint(int codePoint) {
332 return append(Character.toChars(codePoint));
333 }
334
335 @Override
336 public synchronized char charAt(int index) {

Callers

nothing calls this directly

Calls 2

appendMethod · 0.95
toCharsMethod · 0.95

Tested by

no test coverage detected