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
; }
Expand description

Utilities around Pushable collections

Required Methods

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

Implementors