Inner loop

For other uses, see Inner loop (disambiguation).

In computer programs, an important form of control flow is the loop which causes a block of code to be executed more than once. A common idiom is to have a loop nested inside another loop, with the contained loop being commonly referred to as the inner loop. This is significant because the block within the inner loop will be executed by far the most times, so optimizations for the inner loop will have much more effect on the overall execution than program.

This article is issued from Wikipedia - version of the 7/2/2015. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.