Skip to main content

Hypot

Trait Hypot 

Source
pub trait Hypot:
    RudaPrimitive
    + RudaType<ExpandType: HypotExpand>
    + Sized {
    // Provided methods
    fn hypot(self, _rhs: Self) -> Self { ... }
    fn __expand_hypot(
        scope: &mut Scope,
        lhs: NativeExpand<Self>,
        rhs: NativeExpand<Self>,
    ) -> NativeExpand<Self> { ... }
}

Provided Methods§

Source

fn hypot(self, _rhs: Self) -> Self

Source

fn __expand_hypot( scope: &mut Scope, lhs: NativeExpand<Self>, rhs: 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 Hypot for bf16

Source§

impl Hypot for f16

Source§

impl Hypot for f32

Source§

impl Hypot for f64

Implementors§

Source§

impl Hypot for flex32

Source§

impl Hypot for tf32

Source§

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

Source§

impl<T: Hypot + Scalar, N: Size> Hypot for Vector<T, N>