All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.krono.internal.formatters.to2digits.kt Maven / Gradle / Ivy

The newest version!
package krono.internal.formatters

internal val Int.to2digits get() = (if (this < 10) "0" else "") + this




© 2015 - 2024 Weber Informatics LLC | Privacy Policy