Trait syntex_syntax::util::move_map::MoveMap   
                   
                       [−]
                   
               [src]
pub trait MoveMap<T>: Sized {
    fn move_flat_map<F, I>(self, f: F) -> Self where F: FnMut(T) -> I, I: IntoIterator<Item=T>;
    fn move_map<F>(self, f: F) -> Self where F: FnMut(T) -> T { ... }
}
            Required Methods
fn move_flat_map<F, I>(self, f: F) -> Self where F: FnMut(T) -> I, I: IntoIterator<Item=T>
Provided Methods
Implementors
- impl<T> MoveMap<T> for SmallVector<T>
- impl<T> MoveMap<T> for Vec<T>
- impl<T> MoveMap<T> for P<[T]>