pub trait PushBack {
    type Input;

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

Required Associated Types§

Required Methods§

source

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

Implementors§

source§

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

§

type Input = <M as Magma>::Set

source§

impl<M: Monoid> PushBack for FoldableQueue<M>where M::Set: Clone,

§

type Input = <M as Magma>::Set

source§

impl<T: Eq> PushBack for KmpSearcher<T>

§

type Input = T