use of suite.jdk.gen.FunExprM.SeqFunExpr in project suite by stupidsing.
the class FunFactory method seq.
public FunExpr seq(FunExpr... fes) {
int i = fes.length;
if (0 < i) {
FunExpr fe = fes[--i];
while (0 < i) {
SeqFunExpr expr = new SeqFunExpr();
expr.left = fes[--i];
expr.right = fe;
fe = expr;
}
return fe;
} else
return _void();
}
Aggregations