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

org.snapscript.core.scope.index.Table Maven / Gradle / Ivy

package org.snapscript.core.scope.index;

import org.snapscript.core.constraint.Constraint;

public interface Table extends Iterable {
   Local getLocal(int index);
   Constraint getConstraint(int index);
   void addLocal(int index, Local local);
   void addConstraint(int index, Constraint constraint);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy