Object
# File lib/json/add/complex.rb, line 7 def self.json_create(object) Complex(object['r'], object['i']) end
# File lib/json/add/complex.rb, line 11 def as_json(*) { JSON.create_id => self.class.name, 'r' => real, 'i' => imag, } end
# File lib/json/add/complex.rb, line 19 def to_json(*) as_json.to_json end
[Validate]
Generated with the Darkfish Rdoc Generator 2.