# File lib/rhc/highline_extensions.rb, line 318
    def source_rows
      @source_rows ||= begin
        (@mapper ? (items.map &@mapper) : items).each do |row|
          row.map!{ |col| col.is_a?(String) ? col : col.to_s }
        end
      end
    end