• Stars
    star
    107
  • Rank 322,643 (Top 7 %)
  • Language
    Kotlin
  • License
    MIT License
  • Created over 1 year ago
  • Updated 4 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Kotlin Multiplatform (KMP) library that adds basic support for Unicode code points

kotlin-codepoints

Kotlin Multiplatform (KMP) library that adds basic support for Unicode code points.

Note: This library is a side project and work in progress. When evaluating whether to use this in production, please consider this project unmaintained. That being said, contributions are welcome. But don't expect fast responses.

Installation

kotlin-codepoints is distributed through Maven Central.

dependencies {
    // Basic API
    implementation("de.cketti.unicode:kotlin-codepoints:0.6.1")

    // or
    
    // Nice API
    implementation("de.cketti.unicode:kotlin-codepoints-deluxe:0.6.1")
}

Features

kotlin-codepoints

This library aims to make some methods of the Java standard library available to Kotlin multiplatform projects.

Methods found in java.lang.String:

  • CharSequence.codePointAt(index)
  • CharSequence.codePointBefore(index)
  • CharSequence.codePointCount(beginIndex, endIndex)
  • CharSequence.offsetByCodePoints(index, codePointOffset)

Methods found in java.lang.StringBuilder:

  • Appendable.appendCodePoint(codePoint)

Methods found in java.lang.Character:

  • CodePoints.isValidCodePoint(codePoint)
  • CodePoints.isBmpCodePoint(codePoint)
  • CodePoints.isSupplementaryCodePoint(codePoint)
  • CodePoints.charCount(codePoint)
  • CodePoints.isSurrogatePair(highSurrogate, lowSurrogate)
  • CodePoints.highSurrogate(codePoint)
  • CodePoints.lowSurrogate(codePoint)
  • CodePoints.toCodePoint(highSurrogate, lowSurrogate)
  • CodePoints.toChars(codePoint)
  • CodePoints.toChars(codePoint, destination, offset)

On the JVM the platform implementation (java.lang.Character.*) is used. On all other platforms the implementation in this library is used.

kotlin-codepoints-deluxe

This library builds on top of kotlin-codepoints. It adds a the CodePoint class to make working with code points a bit less painful.

Until someone gets around to building and publishing proper documentation, see CodePoint.kt to get and idea of what's available.

Example:

val text = "πŸ¦•&πŸ¦–"

for (codePoint in text.codePointSequence()) {
    print("code point: $codePoint, char count: ${codePoint.charCount}")

    if (codePoint.isBasic) {
        println(" - boring!")
    } else {
        println()
    }
}

// Output:
// -------
// code point: U+1F995, char count: 2
// code point: U+0026, char count: 1 - boring!
// code point: U+1F996, char count: 2

License

MIT License

Copyright (c) 2023 cketti

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

More Repositories

1

ckChangeLog

ckChangeLog - An Android Library to display a Change Log
Java
182
star
2

EmailIntentBuilder

An Android Library for the creation of SendTo Intents with mailto: URI
Java
172
star
3

ShareIntentBuilder

Share Intent Builder - Android Library for the type-safe creation of Share Intents.
Java
45
star
4

SafeContentResolver

A replacement for Android's ContentResolver that protects against the Surreptitious Sharing attack
Java
39
star
5

jitsi-hacks

Jitsi Hacks – Extending Jitsi Meet using injected scripts
JavaScript
33
star
6

AdbScreenAwake

Android app to keep the screen awake while ADB is connected to the device
Kotlin
23
star
7

OkHttpWithContentUri

Use Android's content:// URIs when uploading or downloading content with OkHttp
Kotlin
13
star
8

PublicFileProvider

Android library to publicly expose files via content:// URI. Consider using FileProvider instead!
Java
13
star
9

FamilyEmoji

πŸ‘¨πŸΏβ€πŸ‘©πŸΎβ€πŸ‘§πŸ½β€πŸ‘¦πŸ» Recreate your family as emoji ZWJ sequence
JavaScript
10
star
10

ShareUrlToClipboard

Android sample app that shows how to add a 'Copy link to clipboard' option to the Share dialog
Java
9
star
11

DashClock_K-9

[ABANDONED] K-9 Mail DashClock Extension
Java
6
star
12

SmartK9

K-9 Mail for SmartWatch - Displays notifications for new messages on your Sony SmartWatch 2
Java
5
star
13

MailToCompat

A drop-in replacement for Android's (buggy) MailTo class
Java
4
star
14

HoloColorPicker_demo

Small application that demonstrates the capabilities of the HoloColorPicker library
Java
2
star
15

Aapt2XmlOddity

Code to reproduce https://issuetracker.google.com/issues/71805084
Java
2
star
16

AttachContact

Attach Contact (Android app)
Kotlin
2
star
17

jmap-library

A Java library for the JSON Meta Application Protocol
Java
1
star
18

ContextMenuBug

Java
1
star
19

cketti

πŸ‘‹
1
star
20

MateLightAndroid

Android app to control the Mate Light installation @ c-base
Java
1
star
21

nowinandroid

A fully functional Android app built entirely with Kotlin and Jetpack Compose
Kotlin
1
star