positiveRange

@ExperimentalSince(version = KotoolsTypesVersion.V4_4_0)
val NonZeroInt.Companion.positiveRange: NotEmptyRange<StrictlyPositiveInt>

The range of positive values a NonZeroInt can have.

Here's an example of calling this property from Kotlin code:

println(NonZeroInt.positiveRange) // [1;2147483647]

Please note that this property is not available yet for Java users.