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

com.github.halfmatthalfcat.stringmetric.cli.similarity.hammingmetric.scala Maven / Gradle / Ivy

package com.github.halfmatthalfcat.stringmetric.cli.similarity

import com.github.halfmatthalfcat.stringmetric.cli._
import com.github.halfmatthalfcat.stringmetric.similarity.HammingMetric

case object hammingmetric extends Command(
	(opts) =>
		"Compares the number of characters that two equal length strings are different from one another." + Ls + Ls +
		"Syntax:" + Ls +
		Tab + "hammingmetric [Options] string1 string2..." + Ls + Ls +
		"Options:" + Ls +
		Tab + "-h, --help" + Ls +
		Tab + Tab + "Outputs description, syntax, and options.",
	(opts) => opts.contains('dashless) && (opts('dashless): Array[String]).length == 2,
	(opts) => {
		val strings: Array[String] = opts('dashless)

		HammingMetric.compare(strings(0), strings(1))
			.map(_.toString)
			.getOrElse("not comparable")
	}
) { override def main(args: Array[String]): Unit = super.main(args) }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy