gemm_common::simd

Trait NullaryFnOnce

Source
pub trait NullaryFnOnce {
    type Output;

    // Required method
    fn call(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn call(self) -> Self::Output

Implementors§

Source§

impl<R, F> NullaryFnOnce for F
where F: FnOnce() -> R,