Range.isFullRange

Checks whether the specified range is the full range of T.

struct Range(T)
static
bool
isFullRange
(
T min
,
T max
)

Parameters

min T

minimum value

max T

maximum value

Return Value

Type: bool

true if the range is full, i.e. min == T.min and max == T.max.

Meta