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

org.snapscript.core.variable.index.VariablePointer Maven / Gradle / Ivy

package org.snapscript.core.variable.index;

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

public interface VariablePointer {
   Constraint getConstraint(Scope scope, Constraint left);
   Value getValue(Scope scope, T left);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy