rust-music-theory 0.2.0

A library that procedurally implements music theory notions like Scale, Chord, Interval, Note
Documentation
1
2
3
4
5
6
7
//! Intervals between notes.

mod errors;
mod interval;

pub use errors::IntervalError;
pub use interval::Interval;