arrayStoreN function

ArrayStore arrayStoreN(
  1. Expr array,
  2. Iterable<Expr> indices,
  3. Expr value
)

Implementation

ArrayStore arrayStoreN(Expr array, Iterable<Expr> indices, Expr value) =>
    ArrayStore(array, indices.toList(), value).declare();