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

commonMain.utility.Misc.kt Maven / Gradle / Ivy

The newest version!
package com.github.fluidsonic.fluid.time


@Suppress("NOTHING_TO_INLINE")
inline fun check(value: Long, inRange: LongRange, name: String) =
	check(value in inRange) { "$name must be in range $inRange: $value" }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy