File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -609,14 +609,15 @@ Java
609609----
610610
611611``char `` is a character able to store Unicode :ref: `BMP <bmp >` only characters
612- (U+0000—U+FFFF), whereas ``Character `` is a character able to store any Unicode
613- character (U+0000—U+10FFFF). ``Character `` methods:
612+ (U+0000—U+FFFF), whereas ``Character `` is a wrapper of the `` char `` with static helper functions.
613+ ``Character `` methods:
614614
615615 * ``.getType(ch) ``: get the :ref: `category <unicode categories >` of a
616616 character
617617 * ``.isWhitespace(ch) ``: test if a character is a whitespace
618618 according to Java
619619 * ``.toUpperCase(ch) ``: convert to uppercase
620+ * ``.codePointAt(CharSequence, int) ``: return the code point at the given index of the CharSequence
620621
621622.. todo :: explain isWhitespace()
622623
You can’t perform that action at this time.
0 commit comments