Trait monster::incubation::find_and_take::FindAndTake [] [src]

pub trait FindAndTake {
    type Item;
    fn find_and_take<F: Fn(&Self::Item) -> bool>(
        &mut self,
        f: F
    ) -> Option<Self::Item>; }

Associated Types

Required Methods

Implementors