Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I write an iterator in a procedure? Sorry for my dump question, I am novoice. Thanks for the answers.

share|improve this question

4 Answers

up vote 5 down vote accepted

It totally depends on what you need to iterate over.

An array? Use a loop: plain, for, or while.

One of the predefined containers? Use the iterator declarations associated with the container.

A string? Treat it like an array.

It would help if you provided more specifics about what you're trying to accomplish.

share|improve this answer

See the Ada style guide

share|improve this answer

You can check the Ada 95 Rationale. There is an example there of an iterator which you might use as a starting point. Look here: http://www.adahome.com/LRM/95/Rationale/rat95html/rat95-p2-3.html#7

share|improve this answer

Well, like others have said, it depends...

Personally, in my current project I find myself doing stuff like this quite a lot:

for Thing in 1..Number_Of_Things loop
 -- do stuff here
end loop;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.