Trait map_for::FlatMap [] [src]

pub trait FlatMap<Item> {
    type Item;
    fn flat_map<U, F>(self, f: F) -> Option<U>
    where
        F: FnOnce(Self::Item) -> Option<U>
; }

Associated Types

Required Methods

Implementors