run.qontract.core.FactStore.kt Maven / Gradle / Ivy
package run.qontract.core
import run.qontract.core.value.Value
interface FactStore {
fun match(sampleValue: Value, key: String): Result
fun has(key: String): Boolean
fun get(key: String): Value
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy