# Pick Each Integer Deprecated

Grammar — Pick each integer from s to e, and do (Actions)
FlagsSubFunctions | 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 — Start
  • int — End

Returns — void

IntLoopBegin(#PARAM(s), #PARAM(e));
for ( ; !IntLoopDone() ; IntLoopStep() ) {
    #SUBFUNCS(actions)
}
IntLoopEnd();

Category: General / Loops

# Examples

— None found —