pub trait IntervalStepSequence {
    // Required method
    fn interval_steps(&self) -> Vec<Interval>;
}
Expand description

Provides a sequence of intervals, representing the interval deltas from one note to the next.

Required Methods§

source

fn interval_steps(&self) -> Vec<Interval>

Provides a sequence of intervals, representing the interval deltas from one to the next.

Implementors§