Trait std::num::Algebraic

pub trait Algebraic {
    fn pow(&self, n: &Self) -> Self;
    fn sqrt(&self) -> Self;
    fn rsqrt(&self) -> Self;
    fn cbrt(&self) -> Self;
    fn hypot(&self, other: &Self) -> Self;
}

Required Methods

fn pow(&self, n: &Self) -> Self

fn sqrt(&self) -> Self

fn rsqrt(&self) -> Self

fn cbrt(&self) -> Self

fn hypot(&self, other: &Self) -> Self

Implementors