Definitions for "Foreach"
For each (or foreach) is a computer language idiom for traversing items in a collection. Foreach is usually used in place of a standard for statement. Unlike other for loop constructs, however, foreach loops maintain no explicit counter: they essentially say "do this to everything in this set", rather than "do this x times".