Skip to main content

Exp

Trait Exp 

Source
pub trait Exp:
    CubePrimitive
    + CubeType<ExpandType: ExpExpand>
    + Sized {
    // Provided methods
    fn exp(self) -> Self { ... }
    fn __expand_exp(
        scope: &mut Scope,
        x: NativeExpand<Self>,
    ) -> NativeExpand<Self> { ... }
}

Provided Methods§

Source

fn exp(self) -> Self

Source

fn __expand_exp(scope: &mut Scope, x: NativeExpand<Self>) -> NativeExpand<Self>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl Exp for Complex<f32>

Source§

impl Exp for Complex<f64>

Source§

impl Exp for bf16

Source§

impl Exp for f16

Source§

impl Exp for f32

Source§

fn exp(self) -> Self

Source§

impl Exp for f64

Implementors§

Source§

impl Exp for flex32

Source§

impl Exp for tf32

Source§

impl<Marker: 'static> Exp for DynamicScalar<Marker>

Source§

impl<P: Scalar + Exp, N: Size> Exp for Vector<P, N>