Skip to content

Commit 2363e53

Browse files
authored
Merge pull request #14 from JakeWharton/jw.readme.2023-01-23
Update README with API changes
2 parents 6612327 + 0575799 commit 2363e53

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,20 @@ Methods found in `java.lang.String`:
2424
* `String.codePointCount(beginIndex, endIndex)`
2525
* `String.offsetByCodePoints(index, codePointOffset)`
2626

27+
Methods found in `java.lang.StringBuilder`:
28+
* `StringBuilder.appendCodePoint(codePoint)`
29+
2730
Methods found in `java.lang.Character`:
2831
* `CodePoints.isValidCodePoint(codePoint)`
2932
* `CodePoints.isBmpCodePoint(codePoint)`
3033
* `CodePoints.isSupplementaryCodePoint(codePoint)`
3134
* `CodePoints.charCount(codePoint)`
32-
* `CodePoints.isSurrogate(char)`
33-
* `CodePoints.isHighSurrogate(char)`
34-
* `CodePoints.isLowSurrogate(char)`
3535
* `CodePoints.isSurrogatePair(highSurrogate, lowSurrogate)`
3636
* `CodePoints.highSurrogate(codePoint)`
3737
* `CodePoints.lowSurrogate(codePoint)`
3838
* `CodePoints.toCodePoint(highSurrogate, lowSurrogate)`
39+
* `CodePoints.toChars(codePoint)`
40+
* `CodePoints.toChars(codePoint, destination, offset)`
3941

4042
On the JVM the platform implementation is used. On all other platforms the
4143
[implementation in this library](src/commonImplementation/kotlin) is used.

0 commit comments

Comments
 (0)