sqrt

Function sqrt 

Source
pub fn sqrt(a: &BigInt) -> BigInt
Expand description

Computes the integer square root of a number using Newton’s method Ported from OpenZeppelin’s Solidity library to Rust @param a The input number (must be a non-negative integer) @returns The integer square root of a