nuby question re a method

V

Van Jacques

I am new to ruby, and have a simple question.

In the tutorial, I came across

class AddressBook
def each
@persons.each { |p| yield p }
end
end

defining the method each on the Class AddressBook (an array of hashes;
the addressbook is an array of persons, each person is a hash;
his name, address, etc.)

Question 1.
Is this the same as the following?

class AddressBook
def each
@persons.each
do |p|
yield p
end
end
end

Question 2. Is my terminology correct? If not, is the meaning
clear enough?

Van
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,767
Messages
2,569,572
Members
45,045
Latest member
DRCM

Latest Threads

Top