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