class Terminal::Table::Row

def initialize table, array = [], **_kwargs

def initialize table, array = [], **_kwargs
  @cell_index = 0
  @table = table
  @cells = []
  array.each { |item| self << item }
end