Class: Complex
- Inherits:
-
Object
- Object
- Complex
- Defined in:
- lib/json/add/complex.rb
Class Method Summary collapse
-
.json_create(object) ⇒ Object
Deserializes JSON string by converting Real value
r
, imaginary valuei
, to a Complex object.
Instance Method Summary collapse
-
#as_json ⇒ Object
Returns a hash, that will be turned into a JSON object and represent this object.
-
#to_json ⇒ Object
Stores class name (Complex) along with real value
r
and imaginary valuei
as JSON string.
Class Method Details
.json_create(object) ⇒ Object
Deserializes JSON string by converting Real value r
, imaginary value i
, to a Complex object.
10 11 12 |
# File 'lib/json/add/complex.rb', line 10 def self.json_create(object) Complex(object['r'], object['i']) end |
Instance Method Details
#as_json ⇒ Object
Returns a hash, that will be turned into a JSON object and represent this object.
16 17 18 19 20 21 22 |
# File 'lib/json/add/complex.rb', line 16 def as_json(*) { JSON.create_id => self.class.name, 'r' => real, 'i' => imag, } end |
#to_json ⇒ Object
Stores class name (Complex) along with real value r
and imaginary value i
as JSON string
25 26 27 |
# File 'lib/json/add/complex.rb', line 25 def to_json(*) as_json.to_json end |