Splayable

Trait Splayable 

Source
pub trait Splayable<K> {
    // Required method
    fn splay(&mut self, key: K);
}

Required Methods§

Source

fn splay(&mut self, key: K)

Implementors§

Source§

impl<K: Ord + Clone + Debug> Splayable<K> for SplayTree<K>