set method

void set(
  1. int x,
  2. int value
)

Sets a specific location in the bar

@param x The location in the bar @param value Black if true, white if false;

Implementation

void set(int x, int value) {
  _row[x] = value;
}