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

commonMain.Progressive.kt Maven / Gradle / Ivy

package opensavvy.progress

/**
 * Stores a [value] along with [progress] information.
 */
@ExperimentalProgressApi
data class Progressive(
	val value: Value,
	val progress: Progress,
) {

	override fun toString() = "$value $progress"
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy