StrictlyNegativeInt
@Since(version = KotoolsTypesVersion.V1_1_0)
Represents an integer number of type Int that is less than zero.
You can use the toStrictlyNegativeInt function for creating an instance of this type.
Serialization and deserialization
The serialization and deserialization processes of this type behave like for the Int type.
Here's an example of Kotlin code that encodes and decodes this type using the JavaScript Object Notation (JSON) format from kotlinx.serialization:
val number: StrictlyNegativeInt = (-123).toStrictlyNegativeInt()
.getOrThrow()
val encoded: String = Json.encodeToString(number)
println(encoded) // -123
val decoded: StrictlyNegativeInt = Json.decodeFromString(encoded)
println(decoded == number) // true
Content copied to clipboard
Types
Link copied to clipboard
object Companion
Contains declarations for holding or building a StrictlyNegativeInt.
Functions
Link copied to clipboard
@Since(version = KotoolsTypesVersion.V4_1_0)
@Since(version = KotoolsTypesVersion.V4_1_0)
Link copied to clipboard
@Since(version = KotoolsTypesVersion.V4_1_0)
Calculates the remainder of truncating division of this integer by the other one.
Link copied to clipboard
@ExperimentalSince(version = KotoolsTypesVersion.V4_4_0)
@ExperimentalSince(version = KotoolsTypesVersion.V4_4_0)
@ExperimentalSince(version = KotoolsTypesVersion.V4_4_0)
Returns the negative of this integer number.