class RubyXL::RichText

def to_s

def to_s
  # `dup` here unfreezes the string since it's not a constant but initial value
  str = if t.nil? then ''.dup else t.to_s end
  r && r.each { |rtr| str << rtr.to_s if rtr }
  str
end