<continue> skip remaining code in a loop

name
continue
xml namespace
http://moyaproject.com

When Moya encounters this tag in a loop, such as <while> or <for>, it ignores the remaining code in the block and continues to the next item in the loop.

Example

<let crew="['John', 'Rygel', 'Scorpius', 'Aeryn']"/>
<for src="crew" dst="character">
    <if test="character == 'Scorpius'">
        <echo>Scorpius is not allowed on board!</eco>
        <continue/>
    </if>
    <echo>${character} is on board</echo>
</for>
inherited attributes
name purpose type required? default choices
if Conditional expression expression No yes