# Pick Each Integer
Grammar — Pick each integer from s to e, and do (Actions)
Flags —SubFunctions
|Action
Picks each integer between the Start and End parameters, and performs the specified actions. Uses the “Picked Integer” function to refer to the iterator in the action set.
# Arguments
int
— Startint
— End
Returns — void
#INITAUTOVAR(ae,e)
#AUTOVAR(var) = #PARAM(s);
for ( ; #AUTOVAR(var) <= #AUTOVAR(ae); #AUTOVAR(var) += 1 ) {
#SUBFUNCS(actions)
}
# Related
Category: General / Loops
- Repeat — macro
- Repeat Forever — macro
- For Each Real — macro
- For Each Real Deprecated — macro
- For Each Integer — macro
- For Each Integer Deprecated — macro
- Pick Each Integer — macro
- Pick Each Integer Deprecated — macro
- Picked Integer
- Picked Integer Deprecated —
int
— IntLoopCurrentDeprecated - While — macro
- Do - While — macro
# Examples
— None found —