rstmt_core/traits/
chroma.rs

1/*
2    appellation: chroma <module>
3    authors: @FL03
4*/
5
6/// [`Chroma`] defines a trait for establishing a chromatic relationship between pitches.
7pub trait Chroma {
8    type Rel;
9}