Trait nekolib::traits::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,

§

type Input = <M as Magma>::Set