All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.dev.fritz2.core.id.kt Maven / Gradle / Ivy

There is a newer version: 1.0-RC19.5
Show newest version
package dev.fritz2.core

object Id {
    private const val defaultLength = 6
    private val chars = "123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ".toCharArray()

    fun next(length: Int = defaultLength) = buildString {
        for (i in 0 until length) {
            append(chars.random())
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy