Nextcase Statement
This statement is used within a case statement to jump from the current statement to the beginning of the statement block for the next valuelist (the nextcase statement provides the equivalent to the fall-through case in C).
This statement has the following syntax:
nextcase;
A related statement is the case statement (see
Case Statement), which selects one of a number of possible actions based on the value of an expression. For examples of case and nextcase, see
Examples--Case Statement in the
Language Reference Guide.