method

members

v1_8_6_287 - Show latest stable - Class: Struct
members()
public

Returns an array of strings representing the names of the instance variables.

   Customer = Struct.new(:name, :address, :zip)
   joe = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345)
   joe.members   #=> ["name", "address", "zip"]