method

to_a

v1_8_7_72 - Show latest stable - Class: Struct
to_a()
public

Returns the values for this instance as an array.

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