[][src]Trait rustc_ap_rustc_data_structures::map_in_place::MapInPlace

pub trait MapInPlace<T>: Sized {
    pub fn flat_map_in_place<F, I>(&mut self, f: F)
    where
        F: FnMut(T) -> I,
        I: IntoIterator<Item = T>
; pub fn map_in_place<F>(&mut self, mut f: F)
    where
        F: FnMut(T) -> T
, { ... } }

Required methods

pub fn flat_map_in_place<F, I>(&mut self, f: F) where
    F: FnMut(T) -> I,
    I: IntoIterator<Item = T>, 
[src]

Loading content...

Provided methods

pub fn map_in_place<F>(&mut self, mut f: F) where
    F: FnMut(T) -> T, 
[src]

Loading content...

Implementations on Foreign Types

impl<T> MapInPlace<T> for Vec<T>[src]

impl<T, A: Array<Item = T>> MapInPlace<T> for SmallVec<A>[src]

Loading content...

Implementors

Loading content...