Back to FabImage Library website
You are here: Start » Function Reference » Data Flow » Loop Generators » EnumerateIntegers

EnumerateIntegers
Header: | STD.h |
---|---|
Namespace: | fil |
Module: | FoundationLite |
In each consecutive iteration produces a consecutive number from an arithmetic sequence.
Syntax
bool fil::EnumerateIntegers ( Enumerate1DState& ioState, int inStart, ftl::Optional<int> inCount, int inStep, bool inRepeat, int& outValue, ftl::Optional<bool> outIsFirst = ftl::NIL, ftl::Optional<bool> outIsLast = ftl::NIL )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() |
ioState | Enumerate1DState& | Object used to maintain state of the function. | ||
![]() |
inStart | int | First value of the generated sequence | ||
![]() |
inCount | Optional<int> | 0 - ![]() |
NIL | Length of the generated sequence |
![]() |
inStep | int | Value added in each iteration | ||
![]() |
inRepeat | bool | Determines whether to repeat loop | ||
![]() |
outValue | int& | |||
![]() |
outIsFirst | Optional<bool> | NIL | Flag indicating the first iteration | |
![]() |
outIsLast | Optional<bool> | NIL | Flag indicating the last iteration |
Optional Outputs
The computation of following outputs can be switched off by passing value ftl::NIL
to these parameters: outIsFirst, outIsLast.
Read more about Optional Outputs.