com.mthaler.aparser.arithmetic.Context.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aparser Show documentation
Show all versions of aparser Show documentation
An arithmetic expression parser written in Kotlin
package com.mthaler.aparser.arithmetic
/**
* Context for evaluating expressions
*/
data class Context(val globalVars: Map) {
companion object {
val Empty = Context(emptyMap())
}
}