NewCall creates an Expr value representing a global function call.
(id int64, function string, args ...Expr)
| 26 | |
| 27 | // NewCall creates an Expr value representing a global function call. |
| 28 | NewCall(id int64, function string, args ...Expr) Expr |
| 29 | |
| 30 | // NewComprehension creates an Expr value representing a one-variable comprehension over a value range. |
| 31 | NewComprehension(id int64, iterRange Expr, iterVar, accuVar string, accuInit, loopCondition, loopStep, result Expr) Expr |
no outgoing calls