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

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