method
values_at
ruby latest stable - Class:
Struct
values_at(*args)public
Returns the struct member values for each selector as an Array. A selector may be either an Integer offset or a Range of offsets (as in Array#values_at).
Customer = Struct .new (:name, :address, :zip) joe = Customer.new ("Joe Smith", "123 Maple, Anytown NC", 12345) joe.values_at (0, 2) #=> ["Joe Smith", 12345]
static VALUE
rb_struct_values_at(int argc, VALUE *argv, VALUE s)
{
return rb_get_values_at(s, RSTRUCT_LEN(s), argc, argv, struct_entry);
}