NewList creates a CreateList instruction where the list is comprised of the optional set of elements provided as arguments.
(elems ...*exprpb.Expr)
| 416 | // NewList creates a CreateList instruction where the list is comprised of the optional set |
| 417 | // of elements provided as arguments. |
| 418 | func (ah *adaptingHelper) NewList(elems ...*exprpb.Expr) *exprpb.Expr { |
| 419 | return mustAdaptToProto(ah.modernHelper.NewList(mustAdaptToExprs(elems)...)) |
| 420 | } |
| 421 | |
| 422 | // NewMap creates a CreateStruct instruction for a map where the map is comprised of the |
| 423 | // optional set of key, value entries. |
nothing calls this directly
no test coverage detected