struct.members â array
Instance Public methods
Returns an array of symbols representing the names of the instance variables.
1 2 3 | Customer = Struct. new ( :name , :address , :zip ) joe = Customer. new ( "Joe Smith" , "123 Maple, Anytown NC" , 12345 ) joe.members #=> [:name, :address, :zip] |
Please login to continue.