Back to Aurora Vision Library website
You are here: Start » Function Reference » All Functions » Loop Generators » Repeat
This is Filter Equivalent. This function may be present in generated code, but should not be used in hand-written code.
| Header: | STD.h |
|---|---|
| Namespace: | avl |
| Module: | FoundationLite |
Generates a loop that ends at the first invocation with True on the input.
Applications: Put this filter into a task that should have a loop, but does not have any other loop generators (e.g. GrabImage).
Syntax
bool avl::Repeat ( DelayByPeriodState& ioState, bool inUntil, int inDelay = 0 )
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
ioState | DelayByPeriodState& | Object used to maintain state of the function. | |
![]() |
inUntil | bool | False | If 'True' the loop will break |
![]() |
inDelay | int | 0 | Time between iterations in milliseconds |


