Uses of Interface
org.norecess.citkit.environment.IEnvironment

Packages that use IEnvironment
org.norecess.citkit.environment This package provides classes to support an environment in an interpreter or compiler. 
 

Uses of IEnvironment in org.norecess.citkit.environment
 

Classes in org.norecess.citkit.environment that implement IEnvironment
 class Environment<T>
          Implements a variable environment for a Hobbes interpreter.
 class NullEnvironment<T>
           
 

Methods in org.norecess.citkit.environment that return IEnvironment
 IEnvironment<T> IEnvironment.create()
          Creates a nested environment.
 

Constructors in org.norecess.citkit.environment with parameters of type IEnvironment
Environment(IEnvironment<T> previous)
           
Environment(java.util.Map<ISymbol,T> currentScope, IEnvironment<T> previous)