pub trait AssignmentAnalysis<'a, T: 'a>: Iterator<Item = &'a Assignment<T>>where
    Self: Sized,
{ fn analysis(self) -> AssignmentIterator<'a, T, Self> { ... } }
Expand description

Analyzes that can be performed on a set of assignments.

Provided Methods

Implementors