Is there a way to get the square root of a big integer? I am dealing with numbers that are much too large for int64 to handle so bigint is a must.
I was considering the idea of implementing it myself using the Babylonian method, but want to know if there are any built in functions for this first.
Thanks in advance.