Method: Struct#each

Defined in:
struct.c

#each {|obj| ... } ⇒ Object

Calls block once for each instance variable, passing the value as a parameter.

Customer = Struct.new(:name, :address, :zip)
joe = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345)
joe.each {|x| puts(x) }

produces:

Joe Smith
123 Maple, Anytown NC
12345

Yields:

  • (obj)


425
426
427
# File 'struct.c', line 425

static VALUE
rb_struct_each(s)
VALUE s;