ZeroInt
Represents an integer number of type Int that equals zero.
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 encoded: String = Json.encodeToString(ZeroInt)
println(encoded) // 0
val decoded: ZeroInt = Json.decodeFromString(encoded)
println(decoded === ZeroInt) // true
Content copied to clipboard
Functions
Link copied to clipboard
@Since(version = KotoolsTypesVersion.V4_1_0)
@Since(version = KotoolsTypesVersion.V4_1_0)
@Since(version = KotoolsTypesVersion.V4_1_0)
@Since(version = KotoolsTypesVersion.V4_1_0)
Link copied to clipboard
@Since(version = KotoolsTypesVersion.V4_1_0)
@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)
Returns the negative of this integer number.