I want to know how the C++ Standard Library functions are implemented. In particular, I'm very interested in iostream, stdexcept, fstream, numeric (accumulate, inner_product, etc.), CStdlib (atoi, strtod, strtol, strtoul, etc.) and CMath (ceil, floor, exp, sqrt, pow, etc). Are there resources (online or books) that cover the topic in great detail?

I know I'm into 'reinventing the wheel' here, but I'm really curious.

Thank you.

link|improve this question
feedback

1 Answer

Use Google code search to see open source implementations. For example, gcc

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.