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

commonMain.com.dshatz.fuzzykat.diffutils.model.BoundExtractedResult.kt Maven / Gradle / Ivy

The newest version!
package com.dshatz.fuzzykat.diffutils.model

class BoundExtractedResult(val referent: T, var string: String?, val score: Int, val index: Int) : Comparable> {

    override fun toString(): String {
        return "(string: $string, score: $score, index: $index)"
    }

    override fun compareTo(other: BoundExtractedResult): Int {
        return this.score.compareTo(other.score)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy