commonMain.net.ormr.fuzzywuzzy.model.ExtractedResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fuzzy-wuzzy-jvm Show documentation
Show all versions of fuzzy-wuzzy-jvm Show documentation
Kotlin port of the FuzzyWuzzy library
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)
}