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

org.snapscript.core.scope.State Maven / Gradle / Ivy

package org.snapscript.core.scope;

import org.snapscript.core.constraint.Constraint;
import org.snapscript.core.variable.Value;

public interface State extends Iterable {
   Value getValue(String name);
   Constraint getConstraint(String name);
   void addValue(String name, Value value);
   void addConstraint(String name, Constraint constraint);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy