Class: Complex

Inherits:
Object
  • Object
show all
Defined in:
lib/json/add/complex.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.json_create(object) ⇒ Object

Deserializes JSON string by converting Real value r, imaginary value i, to a Complex object.



11
12
13
# File 'lib/json/add/complex.rb', line 11

def self.json_create(object)
  Complex(object['r'], object['i'])
end

Instance Method Details

#as_jsonObject

Returns a hash, that will be turned into a JSON object and represent this object.



17
18
19
20
21
22
23
# File 'lib/json/add/complex.rb', line 17

def as_json(*)
  {
    JSON.create_id => self.class.name,
    'r'            => real,
    'i'            => imag,
  }
end

#to_json(*args) ⇒ Object

Stores class name (Complex) along with real value r and imaginary value i as JSON string



26
27
28
# File 'lib/json/add/complex.rb', line 26

def to_json(*args)
  as_json.to_json(*args)
end