NewComprehensionTwoVar creates a new two-variable comprehension instruction. - iterRange represents the expression that resolves to a list or map where the elements or keys (respectively) will be iterated over. - iterVar is the iteration variable assigned to the list index or the map key. - iterVar
(iterRange ast.Expr, iterVar, iterVar2, accuVar string, accuInit, condition, step, result ast.Expr)
| 258 | // environment in the step and condition expressions. Presently, the name __result__ is commonly |
| 259 | // used by built-in macros but this may change in the future. |
| 260 | NewComprehensionTwoVar(iterRange ast.Expr, |
| 261 | iterVar, |
| 262 | iterVar2, |
| 263 | accuVar string, |
no outgoing calls
no test coverage detected