
matplotlib.KwargValue.kt Maven / Gradle / Ivy
package 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