class Set

Public Class Methods

json_create(object) click to toggle source

Import a JSON Marshalled object.

method used for JSON marshalling support.

# File json/lib/json/add/set.rb, line 10
def self.json_create(object)
  new object['a']
end

Public Instance Methods

as_json(*) click to toggle source

Marshal the object to JSON.

method used for JSON marshalling support.

# File json/lib/json/add/set.rb, line 17
def as_json(*)
  {
    JSON.create_id => self.class.name,
    'a'            => to_a,
  }
end
to_json(*args) click to toggle source

return the JSON value

# File json/lib/json/add/set.rb, line 25
def to_json(*args)
  as_json.to_json(*args)
end