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

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

Required methods

Provided methods

Implementations on Foreign Types

Implementors