addAll method

void addAll(
  1. Iterable<Expr> a
)

Implementation

void addAll(Iterable<Expr> a) {
  a.forEach(add);
}