Typeservicesv0.6.0
IntClosedRange
Generate a union of numbers between a specified start and end (both inclusive), with an optional step.
You skip over numbers using the StepStep parameter (defaults to 11). For example, IntClosedRange<0, 10, 2>IntClosedRange<0, 10, 2> will create a union of 0 | 2 | 4 | 6 | 8 | 100 | 2 | 4 | 6 | 8 | 10.
Note: StartStart or EndEnd must be non-negative and smaller than 999999.
Use-cases: 1. This can be used to define a set of valid input/output values. for example:
See also:IntRange