Method: Complex#to_yaml

Defined in:
lib/syck/rubytypes.rb

#to_yaml(opts = {}) ⇒ Object



414
415
416
417
418
419
420
421
# File 'lib/syck/rubytypes.rb', line 414

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