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

commonMain.krono.internal.utils.ensure.kt Maven / Gradle / Ivy

There is a newer version: 3.0.14
Show newest version
package krono.internal.utils

internal fun ensure(key: String, value: Int, isWithin: IntRange) = require(value in isWithin) {
    "$key: $value is not in the $isWithin range"
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy