range
@ExperimentalSince(version = KotoolsTypesVersion.V4_4_0)
The range of values a NegativeInt can have.
Here's an example of calling this property from Kotlin code:
println(NegativeInt.range) // [-2147483648;0]
Content copied to clipboard
Please note that this property is not available yet for Java users.
@ExperimentalSince(version = KotoolsTypesVersion.V4_4_0)
The range of values a PositiveInt can have.
Here's an example of calling this property from Kotlin code:
println(PositiveInt.range) // [0;2147483647]
Content copied to clipboard
Please note that this property is not available yet for Java users.
@ExperimentalSince(version = KotoolsTypesVersion.V4_4_0)
The range of values a StrictlyNegativeInt can have.
Here's an example of calling this property from Kotlin code:
println(StrictlyNegativeInt.range) // [-2147483648;-1]
Content copied to clipboard
Please note that this property is not available yet for Java users.
@ExperimentalSince(version = KotoolsTypesVersion.V4_4_0)
The range of values a StrictlyPositiveInt can have.
Here's an example of calling this property from Kotlin code:
println(StrictlyPositiveInt.range) // [1;2147483647]
Content copied to clipboard
Please note that this property is not available yet for Java users.