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)
| 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> |