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

commonMain.com.dshatz.fuzzykat.diffutils.Applicable.kt Maven / Gradle / Ivy

package com.dshatz.fuzzykat.diffutils

/**
 * A ratio/algorithm that can be applied
 */

interface Applicable {

    /**
     * Apply the ratio/algorithm to the input strings
     *
     * @param s1 Input string
     * @param s2 Input string
     * @return The score of similarity
     */
    fun apply(s1: String, s2: String): Int

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy