pub trait RootRem {
    type Output;

    fn nth_root_rem(self, n: usize) -> (Self::Output, Self::Output);
    fn sqrt_rem(self) -> (Self::Output, Self::Output);
    fn cbrt_rem(self) -> (Self::Output, Self::Output);
}
Expand description

Compute the roots (square root, cubic root and arbitrary n-th roots)

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors