# File lib/syck/rubytypes.rb, line 406 def Complex.yaml_new( klass, tag, val ) if val.is_a? String Complex( val ) else Complex( val['real'], val['image'] ) end end
# File lib/syck/rubytypes.rb, line 413 def to_yaml( opts = {} ) Syck::quick_emit( self, opts ) do |out| out.map( taguri, nil ) do |map| map.add( 'image', imaginary ) map.add( 'real', real ) end end end