@@ -1993,10 +1993,6 @@ The following built-in predicates are members of type ``int``:
1993
1993
+-------------------------+-------------+----------------+----------------------------------------------------------------------------------------------------------------+
1994
1994
| ``toUnicode `` | string | | The result is the unicode character for the receiver seen as a unicode code point. |
1995
1995
+-------------------------+-------------+----------------+----------------------------------------------------------------------------------------------------------------+
1996
- | ``codePointAt `` | int | int | The result is the unicode code point at the index given by the argument. |
1997
- +-------------------------+-------------+----------------+----------------------------------------------------------------------------------------------------------------+
1998
- | ``codePointCount `` | int | int, int | The result is the number of unicode code points in the receiver between the given indices. |
1999
- +-------------------------+-------------+----------------+----------------------------------------------------------------------------------------------------------------+
2000
1996
2001
1997
The leftmost bit after ``bitShiftRightSigned `` depends on sign extension, whereas after ``bitShiftRight `` it is zero.
2002
1998
@@ -2056,6 +2052,10 @@ The following built-in predicates are members of type ``string``:
2056
2052
+----------------------+-------------+------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
2057
2053
| ``trim `` | string | | The result is the receiver with all whitespace removed from the beginning and end of the string. |
2058
2054
+----------------------+-------------+------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
2055
+ | ``codePointAt `` | int | int | The result is the unicode code point at the index given by the argument. |
2056
+ +----------------------+-------------+------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
2057
+ | ``codePointCount `` | int | int, int | The result is the number of unicode code points in the receiver between the given indices. |
2058
+ +----------------------+-------------+------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
2059
2059
2060
2060
Regular expressions are as defined by ``java.util.regex.Pattern `` in Java.
2061
2061
For more information, see the `Java API Documentation <https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/regex/Pattern.html >`__.
0 commit comments