IntRange
Importing the class
If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.
Members
static atLeast(min as int) as IntRange
Parameters:
min: int
Type: int
Return Type:
IntRange
static atMost(max as int) as IntRange
Parameters:
max: int
Type: int
Return Type:
IntRange
static between(min as int, max as int) as IntRange
Parameters:
min: int
Type: int
max: int
Type: int
Return Type:
IntRange
static exactly(value as int) as IntRange
Parameters:
value: int
Type: int
Return Type:
IntRange