each

struct.each {|obj| block } â struct
struct.each â an_enumerator
Instance Public methods

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

If no block is given, an enumerator is returned instead.

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

produces:

1
2
3
Joe Smith
123 Maple, Anytown NC
12345
doc_ruby_on_rails
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.