# File lib/faster_csv.rb, line 659
  def self.generate_line( row, options = Hash.new )
    options = {:row_sep => $INPUT_RECORD_SEPARATOR}.merge(options)
    (new("", options) << row).string
  end