com.g2forge.alexandria.generic.environment.IEnvReference Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ax-environment Show documentation
Show all versions of ax-environment Show documentation
Simple library for implementing and interacting with environments in a type and generic safe manner.
package com.g2forge.alexandria.generic.environment;
import com.g2forge.alexandria.generic.environment.implementations.EmptyEnvironment;
public interface IEnvReference extends IEnvironmental {
@Override
public IEnvReference bind(E environment);
public T eval(E environment);
}