The EGL continue statement returns control to the start of a block of code controlled by a for, forEach, or while statement. EGL evaluates the conditions for continuing the loop at that point, and either continues running the loop or exits and continues processing with the next statement after the loop.
The continue statement must be in the same function as the containing statement; you cannot put the continue statement in a function that you call from inside the loop.