I've been trying to get sqrt method's source code from the class Math, I opened the class math from src folder, which contains the source code of Java. I looked up the method and it turned out that it returns from the other method sqrt from the class StrictMath. Again I open StrictMath. I was surprised that I didn't get the source code of the method itself but I found bunch of comments that are not helpful for me. I am wondering how to get the source code of the method.
EDIT: I also looked up Oracle docs and didn't find anything. Same happened with Google.