@see #operations
| 870 | * @see #operations |
| 871 | */ |
| 872 | private interface MathOperation { |
| 873 | double apply(double a, double b); |
| 874 | } |
| 875 | |
| 876 | public static class MathVariable { |
| 877 | final String name, expression, original; |
no outgoing calls
no test coverage detected