Square root functionality in rust

Which libraries are needed to be imported for implementing square root functionality in rust, provided that the user gives the input value for both integer and float?

1 Like

F32 and F64 sqrt is available from STD

1 Like

num_integer::Roots implements it for integers -- num_integer::Roots - Rust

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.