to_h

struct.to_h â hash
Instance Public methods

Returns the values for this instance as a hash with keys corresponding to the instance variable name.

Customer = Struct.new(:name, :address, :zip)
joe = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345)
joe.to_h[:address]   #=> "123 Maple, Anytown NC"
doc_ruby_on_rails
2015-05-16 06:04:54
Comments
Leave a Comment

Please login to continue.