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

commonMain.internal.Symbol.kt Maven / Gradle / Ivy

There is a newer version: 0.23.0
Show newest version
package io.kform.internal

/** Class representing unique constants. */
internal class Symbol(val name: String) {
    override fun toString() = "<$name>"
}

/** Mock value representing an uninitialized variable. */
internal val UNINITIALIZED = Symbol("UNINITIALIZED")

/** Mock value used to set a value to its initial value. */
internal val INITIAL_VALUE = Symbol("INITIAL_VALUE")




© 2015 - 2024 Weber Informatics LLC | Privacy Policy