ANot

Trait ANot 

Source
pub trait ANot<T, const N: usize> {
    // Required method
    fn not(self) -> Self;
}
Expand description

see not

Required Methods§

Source

fn not(self) -> Self

apply the not function to each element of this array.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<T: Not<Output = T>, const N: usize> ANot<T, N> for [T; N]

Source§

fn not(self) -> Self

Implementors§