Trait std_ext::VecExt

source ·
pub trait VecExt<T> {
    // Required method
    fn any<F: Fn(&T) -> bool>(&self, f: F) -> bool;
}

Required Methods§

source

fn any<F: Fn(&T) -> bool>(&self, f: F) -> bool

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<T> VecExt<T> for Vec<T>

source§

fn any<F: Fn(&T) -> bool>(&self, f: F) -> bool

Implementors§