class Asciidoctor::Table::ParserContext

def end_of_row?

Public: Check whether we've met the number of effective columns for the current row.
def end_of_row?
  @col_count == -1 || effective_col_visits == @col_count
end