higherSquareRoot

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

Examples

assert(higherSquareRoot(5) == 4);
assert(higherSquareRoot(17) == 8);
assert(higherSquareRoot(88) == 16); 
assert(higherSquareRoot(64) == 8); 
assert(higherSquareRoot(128) == 16); 

Meta