Trait 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 { ... }
}
🔬 This is a nightly-only experimental API. (rustc_private)

Required Methods

🔬 This is a nightly-only experimental API. (rustc_private)

Provided Methods

🔬 This is a nightly-only experimental API. (rustc_private)

Implementors