Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 80a9481

Browse files
committed
Merge pull request #16 from entbugger/patch-1
Correct Java section in programming_languages.rst
2 parents cf19f47 + 78a4ab4 commit 80a9481

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

programming_languages.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)