pub trait ToRootedChord {
    // Required method
    fn to_rooted_chord(self) -> RootedChord;
}
Expand description

Convert to RootedChord.

Required Methods§

source

fn to_rooted_chord(self) -> RootedChord

Take self and return a RootedChord.

Implementors§