# File lib/syck/rubytypes.rb, line 107 def to_yaml( opts = {} ) Syck::quick_emit( self, opts ) do |out| out.seq( taguri, to_yaml_style ) do |seq| each do |x| seq.add( x ) end end end end
# File lib/syck/rubytypes.rb, line 106 def yaml_initialize( tag, val ); concat( val.to_a ); end