# File lib/dnsruby/resource/RR.rb, line 292
  def to_s
    s = name ? (name.to_s(true) + "\t") : ''
    s << [ttl, klass, type, rdata_to_string].map(&:to_s).join("\t")
  end