Function pop_front_if

Source
fn pop_front_if<T>(
    queue: &mut VecDeque<T>,
    predicate: impl FnOnce(&T) -> bool,
) -> Option<T>
Expand description

FIXME(vec_deque_pop_if): Use VecDeque::pop_front_if when it is stable in bootstrap.