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

ru.astrainteractive.astralibs.string.StringDesc.kt Maven / Gradle / Ivy

There is a newer version: 3.14.1
Show newest version
package ru.astrainteractive.astralibs.string

import kotlinx.serialization.Serializable

sealed interface StringDesc {
    val raw: String

    @JvmInline
    @Serializable(with = StringDescSerializer::class)
    value class Raw(override val raw: String) : StringDesc
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy