File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff 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+
2730Methods 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
4042On the JVM the platform implementation is used. On all other platforms the
4143[ implementation in this library] ( src/commonImplementation/kotlin ) is used.
You can’t perform that action at this time.
0 commit comments