Skip to main content

PushFront

Trait PushFront 

Source
pub trait PushFront {
    type Input;

    // Required method
    fn push_front(&mut self, x: Self::Input);
}

Required Associated Types§

Required Methods§

Source

fn push_front(&mut self, x: Self::Input)

Implementors§

Source§

impl<M: Monoid> PushFront for FoldableDeque<M>
where M::Set: Clone,

Source§

type Input = <M as Magma>::Set