class REXML::CData

def clone

d.to_s # -> "Some text"
d = c.clone
c = CData.new( "Some text" )
_Examples_

Make a copy of this object
def clone
  CData.new self
end