class PDF::Reader::PageLayout

def each_line(&block)

def each_line(&block)
  @runs.sort.group_by { |run|
    run.y.to_i
  }.map { |y, collection|
    yield y, collection
  }
end