menu
agent_dart_base package
documentation
utils/bn.dart
bnSqrt function
bnSqrt function
dark_mode
light_mode
bnSqrt
function
BigInt
bnSqrt
(
BigInt
bn
)
Implementation
BigInt bnSqrt(BigInt bn) { return bn < BigInt.from(2) ? bn : newtonIteration(bn, BigInt.from(1)); }
agent_dart_base package
documentation
utils/bn
bnSqrt function
bn library