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

commonMain.net.ormr.fuzzywuzzy.model.ExtractedResult.kt Maven / Gradle / Ivy

The newest version!
package net.ormr.fuzzywuzzy.model

public data class ExtractedResult(
    public val string: String,
    public val score: Int,
    public val index: Int,
) : Comparable {
    public override fun compareTo(other: ExtractedResult): Int = score.compareTo(other.score)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy