replaceAll<T extends Table, D> method

void replaceAll<T extends Table, D>(
  1. TableInfo<T, D> table,
  2. Iterable<Insertable<D>> rows
)

Helper that calls replace for all rows.

Implementation

void replaceAll<T extends Table, D>(
    TableInfo<T, D> table, Iterable<Insertable<D>> rows) {
  for (final row in rows) {
    replace(table, row);
  }
}