selectN function

ArraySelect selectN(
  1. Expr array,
  2. Iterable<Expr> indices
)

Implementation

ArraySelect selectN(Expr array, Iterable<Expr> indices) =>
    ArraySelect(array, indices.toList()).declare();