com.g2forge.alexandria.expression.ILiteral Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ax-expression Show documentation
Show all versions of ax-expression Show documentation
A library for expressions and their evaluation. Includes a basic implementation for math.
package com.g2forge.alexandria.expression;
public interface ILiteral, N extends IEnvironment> extends IExpression {
@Override
public ILiteral reduce();
@Override
public ILiteral apply(N environment);
}