Type Alias music_theory::theory::note::Octave

source ยท
pub type Octave = u16;
Expand description

Octave.

Example:

use music_theory::theory::*;
assert_eq!(Note::A4.with_octave(5), Note::A5);