@@ -11,12 +11,12 @@ kotlin-codepoints is distributed through Maven Central.
1111``` kotlin
1212dependencies {
1313 // Basic API
14- implementation(" de.cketti.unicode:kotlin-codepoints:0.5 .0" )
14+ implementation(" de.cketti.unicode:kotlin-codepoints:0.6 .0" )
1515
1616 // or
1717
1818 // Nice API
19- implementation(" de.cketti.unicode:kotlin-codepoints-deluxe:0.5 .0" )
19+ implementation(" de.cketti.unicode:kotlin-codepoints-deluxe:0.6 .0" )
2020}
2121```
2222
@@ -27,13 +27,13 @@ dependencies {
2727This library aims to make some methods of the Java standard library available to Kotlin multiplatform projects.
2828
2929Methods found in ` java.lang.String ` :
30- * ` String .codePointAt(index)`
31- * ` String .codePointBefore(index)`
32- * ` String .codePointCount(beginIndex, endIndex)`
33- * ` String .offsetByCodePoints(index, codePointOffset)`
30+ * ` CharSequence .codePointAt(index)`
31+ * ` CharSequence .codePointBefore(index)`
32+ * ` CharSequence .codePointCount(beginIndex, endIndex)`
33+ * ` CharSequence .offsetByCodePoints(index, codePointOffset)`
3434
3535Methods found in ` java.lang.StringBuilder ` :
36- * ` StringBuilder .appendCodePoint(codePoint)`
36+ * ` Appendable .appendCodePoint(codePoint)`
3737
3838Methods found in ` java.lang.Character ` :
3939* ` CodePoints.isValidCodePoint(codePoint) `
@@ -47,7 +47,7 @@ Methods found in `java.lang.Character`:
4747* ` CodePoints.toChars(codePoint) `
4848* ` CodePoints.toChars(codePoint, destination, offset) `
4949
50- On the JVM the platform implementation is used. On all other platforms the
50+ On the JVM the platform implementation ( ` java.lang.Character.* ` ) is used. On all other platforms the
5151[ implementation in this library] ( src/commonImplementation/kotlin ) is used.
5252
5353### kotlin-codepoints-deluxe
0 commit comments