insertAbsoluteAll method

void insertAbsoluteAll(
  1. int row,
  2. int col,
  3. List<Logic> list
)

Set the values of the row, starting at absolute position (row, col) to the list of values

Implementation

void insertAbsoluteAll(int row, int col, List<Logic> list) =>
    partialProducts[row].insertAll(col - rowShift[row], list);