repeat
Repeats the input a number of times.
repeat [count:int]
Description
Section titled “Description”The repeat
operator relays the input without any modification, and repeats its
inputs a specified number of times. It is primarily used for testing and when
working with generated data.
count: int (optional)
Section titled “count: int (optional)”The number of times to repeat the input data.
If not specified, the operator repeats its input indefinitely.
Examples
Section titled “Examples”Repeat input indefinitely
Section titled “Repeat input indefinitely”Given the following events:
{number: 1, "text": "one"}{number: 2, "text": "two"}
The repeat
operator will repeat them indefinitely, in order:
repeat
{number: 1, "text": "one"}{number: 2, "text": "two"}{number: 1, "text": "one"}{number: 2, "text": "two"}{number: 1, "text": "one"}{number: 2, "text": "two"}// …
Repeat the first event 5 times
Section titled “Repeat the first event 5 times”head 1repeat 5
{number: 1, "text": "one"}{number: 1, "text": "one"}{number: 1, "text": "one"}{number: 1, "text": "one"}{number: 1, "text": "one"}