![JAR search and dependency download from the Maven repository](/logo.png)
io.github.danielTucano.matplotlib.KwargValue.kt Maven / Gradle / Ivy
package io.github.danielTucano.matplotlib
sealed interface KwargValue {
open class Quoted(private val value: String): KwargValue {
override fun toString(): String {
return "'$value'"
}
}
class Unquoted(private val value: String): KwargValue {
override fun toString(): String {
return value
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy