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

com.mthaler.aparser.arithmetic.Context.kt Maven / Gradle / Ivy

There is a newer version: 0.4.0
Show newest version
package com.mthaler.aparser.arithmetic

/**
 * Context for evaluating expressions
 */
data class Context(val globalVars: Map) {

    companion object {
        val Empty = Context(emptyMap())
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy