Object
Import a JSON Marshalled object.
method used for JSON marshalling support.
# File json/lib/json/add/bigdecimal.rb, line 11 def self.json_create(object) BigDecimal._load object['b'] end
Marshal the object to JSON.
# File json/lib/json/add/bigdecimal.rb, line 18 def as_json(*) { JSON.create_id => self.class.name, 'b' => _dump, } end
return the JSON value
# File json/lib/json/add/bigdecimal.rb, line 26 def to_json(*args) as_json.to_json(*args) end
This page was generated for Ruby 2.6
Ruby-doc.org is a service of James Britt and Neurogami, an erratic source of art, music, and technology.
Generated with Ruby-doc Rdoc Generator 0.44.2.