Trait PitchMod

Source
pub trait PitchMod {
    type Output;

    // Required method
    fn pmod(self) -> Self::Output;
}
Expand description

this trait relies on a python modulo operator with a divisor of 12

Required Associated Types§

Required Methods§

Source

fn pmod(self) -> Self::Output

Implementors§

Source§

impl<A> PitchMod for A
where A: PyMod<A, Output = A> + FromPrimitive,

Source§

type Output = <A as PyMod>::Output