Package de.fzi.power.interpreter.calculator.expressionoasis.custom.expressions
-
Class Summary Class Description MulExpression Implementation of the(*)fold operation: All elements of the processed collection are multiplied by each other,1is returned in case the collection is empty.
Within expressions, this function can be used byMUL(collection).SumExpression Implementation of the(+)fold operation: All elements of the processed collection are summed up,0is returned in case the collection is empty.
Within expressions, this function can be used bySUM(collection).