# File lib/faster_csv.rb, line 624
      def <<(row_or_array)
        if row_or_array.is_a? Array  # append Array
          @table << Row.new(headers, row_or_array)
        else                         # append Row
          @table << row_or_array
        end

        self  # for chaining
      end