13 lines
199 B
Ruby
13 lines
199 B
Ruby
class Construct < Struct
|
|
|
|
def self.new(hash)
|
|
keys = hash.keys
|
|
vals = hash.values
|
|
return super(*keys).new(*vals)
|
|
end
|
|
|
|
def expand(hash)
|
|
return Construct.new(self.to_h.merge(hash))
|
|
end
|
|
|
|
end
|