Object
# File json/lib/json/add/complex.rb, line 7 def self.json_create(object) Complex(object['r'], object['i']) end
# File json/lib/json/add/complex.rb, line 11 def as_json(*) { JSON.create_id => self.class.name, 'r' => real, 'i' => imag, } end
# File json/lib/json/add/complex.rb, line 19 def to_json(*) as_json.to_json end
This page was generated for Ruby 2.2.10
Generated with Ruby-doc Rdoc Generator 0.44.0.