Trait round_based::containers::push::PushExt[][src]

pub trait PushExt<T>: Push<T> + Sealed<T> {
    fn gmap<B, F>(self, f: F) -> Map<Self, F>
    where
        Self: Sized,
        F: FnMut(B) -> T
; }

Utilities around Pushable collections

Required methods

fn gmap<B, F>(self, f: F) -> Map<Self, F> where
    Self: Sized,
    F: FnMut(B) -> T, 
[src]

Takes a closure and produces a Pushable object which applies closure to each element

Loading content...

Implementors

impl<P, T> PushExt<T> for P where
    P: Push<T>, 
[src]

Loading content...