Defines a data generator that produce logical values in a regular pattern. More...
Defines a data generator that produce logical values in a regular pattern.
This generator produces logical values (true/false) in a regular pattern defined by two parameters: a starting index and a range.
For a size N, the produced values are:
true for indices i where (start + i) % range == 0false for all other indices.| T | Type of the starting index |
| U | Type of the range |