Class: Complex
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.yaml_new(klass, tag, val) ⇒ Object
407 408 409 410 411 412 413 |
# File 'lib/syck/rubytypes.rb', line 407 def Complex.yaml_new( klass, tag, val ) if val.is_a? String Complex( val ) else Complex( val['real'], val['image'] ) end end |
Instance Method Details
#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 |