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

Provides a collection of intervals, each as an absolute interval from a relative pitch.

Required Methods§

source

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

Provides a collection of intervals, each as an absolute interval from a relative pitch.

Implementors§