pub(crate) trait BoolAsSIMD: Sized {
    // Required methods
    fn any(self) -> bool;
    fn all(self) -> bool;
    fn none(self) -> bool;
}

Required Methods§

source

fn any(self) -> bool

source

fn all(self) -> bool

source

fn none(self) -> bool

Implementations on Foreign Types§

source§

impl BoolAsSIMD for bool

source§

fn any(self) -> bool

source§

fn all(self) -> bool

source§

fn none(self) -> bool

Implementors§