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

org.marid.fx.extensions.RangeExtensions.kt Maven / Gradle / Ivy

There is a newer version: 0.9.8.10
Show newest version
package org.marid.fx.extensions

fun IntRange.progress(v: Int): Double = (v - first).toDouble() / (last - first).toDouble()
fun LongRange.progress(v: Long): Double = (v - first).toDouble() / (last - first).toDouble()




© 2015 - 2024 Weber Informatics LLC | Privacy Policy