Template control structures
Conditional control
Function | Summary |
---|---|
if | Allows conditional control by the way of an IF-THEN-ELSE mechanism. |
switch | Allows conditional control of code execution. |
Looping
Function | Summary |
---|---|
do | Creates a do...while loop. |
for | Creates a generic for loop. |
foreach | Iterates over arrays in different ways. |
while | Creates a while loop. |
Deprecated
Function | Summary |
---|---|
section | Deprecated looping, branching, etc. |
Balazs Halasy (22/02/2005 12:59 pm)
Balazs Halasy (07/07/2005 11:44 am)
Comments