I was just wondering if there is a way to find an algorithm for already existing functions. For example if I wanted to know how Math.Pow() works the only things googling ever gets me to are the return values and a source code for Math library that defines pow(duble x, double y) as:
public static extern double Pow(double x, double y);
and nothing else is said about it. Is there a place where the source codes can be found?