EditDistance

org.specs2.data.EditDistance
See theEditDistance companion trait
object EditDistance extends EditDistance

Attributes

Companion
trait
Graph
Supertypes
trait EditDistance
class Object
trait Matchable
class Any
Self type

Members list

Type members

Inherited classlikes

case class Add[T](t: T) extends EditDistanceOperation[T]

Attributes

Inherited from:
EditDistance
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
case class Del[T](t: T) extends EditDistanceOperation[T]

Attributes

Inherited from:
EditDistance
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Attributes

Inherited from:
EditDistance
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class Add[T]
class Del[T]
class Same[T]
class Subst[T]
class EditMatrix[T](s1: IndexedSeq[T], s2: IndexedSeq[T], costs: EditDistanceCosts[T])

Edit matrix for 2 given sequences

Edit matrix for 2 given sequences

Attributes

Inherited from:
EditDistance
Supertypes
class Object
trait Matchable
class Any
case class Same[T](t: T) extends EditDistanceOperation[T]

Attributes

Inherited from:
EditDistance
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
case class Subst[T](t: T, t2: T) extends EditDistanceOperation[T]

Attributes

Inherited from:
EditDistance
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Value members

Inherited methods

def levenhsteinDistance[T](s1: IndexedSeq[T], s2: IndexedSeq[T])(using evidence$1: Equiv[T]): IndexedSeq[EditDistanceOperation[T]]

Attributes

Inherited from:
EditDistance