lowerSquareRoot

Undocumented in source. Be warned that the author may not have intended to support it.
uint
lowerSquareRoot
(
uint value
)

Examples

assert(lowerSquareRoot(5) == 2);
assert(lowerSquareRoot(17) == 4);
assert(lowerSquareRoot(88) == 8);
assert(lowerSquareRoot(64) == 8); 

Meta