pub trait CubicRootRem {
    type Output;

    // Required method
    fn cbrt_rem(&self) -> (Self::Output, Self);
}
Expand description

Computer the floored cubic root of the number and return the remainder at the same time.

Required Associated Types§

Required Methods§

source

fn cbrt_rem(&self) -> (Self::Output, Self)

Implementations on Foreign Types§

source§

impl CubicRootRem for u64

§

type Output = u32

source§

fn cbrt_rem(&self) -> (u32, u64)

source§

impl CubicRootRem for u128

§

type Output = u64

source§

fn cbrt_rem(&self) -> (u64, u128)

source§

impl CubicRootRem for u16

§

type Output = u8

source§

fn cbrt_rem(&self) -> (u8, u16)

source§

impl CubicRootRem for u8

§

type Output = u8

source§

fn cbrt_rem(&self) -> (u8, u8)

source§

impl CubicRootRem for u32

§

type Output = u16

source§

fn cbrt_rem(&self) -> (u16, u32)

Implementors§