Range#
A range of integer numbers, represented with a minimum and maximum value.
The defined minimum value is inclusive of the represented values while the maximum is not included. For example, given a min of 2
and a max of 5
, the range would represent the values 2, 3, 4
.
A range can be defined as an integer representing just a singular number. For example a range defined as 3
is equivalent
to a range with a min of 3
and a max of 3+1
or 4
.
When defined under a parameter called range
this would look like:
range: 3
To specify the minimum and maximum values, a range can be defined as a map with the following parameters:
max Integer - The maximum value (exclusive) of the range.
min Integer - The minimum value (inclusive) of the range.
When defined under a parameter called range
this would look like:
range:
min: 2
max: 5
Uses#
Used by 14 parameters: