Giter VIP home page Giter VIP logo

kotlin-codepoints's Introduction

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.

kotlin-codepoints's People

Contributors

bitpogo avatar cketti avatar jakewharton avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

bitpogo

kotlin-codepoints's Issues

Change extension function names to be different from method names?

Short of using an import alias I wasn't able to make the following work in a KMP project that has the JVM as one of its targets:

import de.cketti.codepoints.deluxe.CodePoint
import de.cketti.codepoints.deluxe.codePointAt

fun main() {
    val stringBuilder = StringBuilder().append("a")

    // Type mismatch: inferred type is Int but CodePoint was expected
    val codePoint: CodePoint = stringBuilder.codePointAt(0)
}

It looked fine in the IDE, but failed when compiling the JVM project.

Explicitly adding a StringBuilder extension function with the @kotlin.internal.HidesMembers annotation din't work either.

@file:Suppress(
    "INVISIBLE_MEMBER",
    "INVISIBLE_REFERENCE",
    "EXTENSION_SHADOWED_BY_MEMBER",
    "KotlinRedundantDiagnosticSuppress",
)
package separate.package.to.avoid.name.conflicts

import de.cketti.codepoints.deluxe.CodePoint
import de.cketti.codepoints.deluxe.codePointAt

@kotlin.internal.HidesMembers
fun StringBuilder.codePointAt(index: Int): CodePoint {
    return (this as CharSequence).codePointAt(index)
}

Changing the names of the extension functions would avoid this problem. The question is what names to chose.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.