migration

This commit is contained in:
root
2026-04-13 20:12:01 +03:00
commit 46ab1753a5
201 changed files with 16685 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package expression.generic;
import java.util.List;
/**
* @author Doschennikov Nikita (me@fymio.us)
*/
public interface GenericExpr<T> {
T evaluate(ArithmeticType<T> type, List<T> vars);
}