struct.to_h â hash
Instance Public methods
Returns the values for this instance as a hash with keys corresponding to the instance variable name.
1 2 3 | Customer = Struct. new ( :name , :address , :zip ) joe = Customer. new ( "Joe Smith" , "123 Maple, Anytown NC" , 12345 ) joe.to_h[ :address ] #=> "123 Maple, Anytown NC" |
Please login to continue.