Trait seqalign::Measure [] [src]

pub trait Measure<T> {
    type Operation: Operation<T>;
    fn operations(&self) -> &[Self::Operation];
}

Trait for edit distance measures.

Associated Types

The edit operations associated with the measure.

Required Methods

Get a slice with the measure's operations. Typically, this contains all the enum variants of the associated type Operation.

Implementors