Trait Root

Source
pub trait Root {
    // Required method
    fn sqrt<const CALC_SCALE: u32, const SCALE_OUT: u32>(
        &self,
        env: &Env,
    ) -> Result<Self, ArithmeticError>
       where Self: Sized;
}

Required Methods§

Source

fn sqrt<const CALC_SCALE: u32, const SCALE_OUT: u32>( &self, env: &Env, ) -> Result<Self, ArithmeticError>
where Self: Sized,

Implementors§