NewMap creates a map from a set of entry expressions which contain a key and value expression.
(entries []ast.EntryExpr)
| 410 | |
| 411 | // NewMap creates a map from a set of entry expressions which contain a key and value expression. |
| 412 | func (opt *optimizerExprFactory) NewMap(entries []ast.EntryExpr) ast.Expr { |
| 413 | return opt.fac.NewMap(opt.nextID(), entries) |
| 414 | } |
| 415 | |
| 416 | // NewMapEntry creates a map entry with a key and value expression and a flag to indicate whether the |
| 417 | // entry is optional. |