Flowchart "for each" loop loop without variable increment

Bryce Thomas picture Bryce Thomas · Dec 14, 2013 · Viewed 47.3k times · Source

I'm designed a flowchart to describe at a high level how a programming process works. Part of this process involves looping through a set of items. I'm wondering if there is any standard or semi-standard way of representing a "for each" style loop in a flow chart, that does not involve making the iteration explicit with an iteration box like m = m + 1 (e.g. here). Most modern programming languages have some kind of "for each" construct for enumerating a set or sequence of items, without having to think about indices. I'm basically looking for a similar visual construct for a flow chart, to avoid wasting space with an explicit counter increment.

Answer

Ray Hulha picture Ray Hulha · Jul 8, 2016

I had the same question and found the answer here.

enter image description here