class MoreMath::Histogram

def output_row(row, width)

def output_row(row, width)
  left, right, count = row
  if @with_counts
    output_row_with_count(left, right, count, width)
  else
    output_row_without_count(left, right, count, width)
  end
end