# Pick Each Integer Deprecated
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
IntLoopBegin(#PARAM(s), #PARAM(e));
for ( ; !IntLoopDone() ; IntLoopStep() ) {
#SUBFUNCS(actions)
}
IntLoopEnd();
# 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 —