Upload files to "java/expression/exceptions"

This commit is contained in:
2026-04-13 10:54:52 +03:00
parent ea33166b32
commit e7650f4092
5 changed files with 498 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package expression.exceptions;
import expression.ListExpression;
import java.util.List;
/**
* @author Georgiy Korneev (kgeorgiy@kgeorgiy.info)
*/
@FunctionalInterface
public interface ListParser {
ListExpression parse(String expression, final List<String> variables) throws Exception;
}