commonMain.community.flock.wirespec.plugin.Output.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arguments Show documentation
Show all versions of arguments Show documentation
Type safe wires made easy
package community.flock.wirespec.plugin
import community.flock.wirespec.compiler.core.Value
import kotlin.jvm.JvmInline
@JvmInline
value class Output private constructor(override val value: String) : Value {
override fun toString() = value
companion object {
operator fun invoke(s: String?) = s?.let(::Output)
}
}