I want to see source code of STL std::cout function. I looked at iostream, but I've seen only "extern cout". So, I guess that it's defined somewhere in the library.
I downloaded source code from official site
I extracted it and did:
sh@sh-R528-R728:~/desktop/stl$ grep -F * | grep "cout"
but I got nothing.
What am I doing wrong? Where is the source code?


std::coutis not a function, it's an object. That aside, try your luck with libc++ in iostream.cpp. – Xeo May 20 '12 at 19:10operator<<is what you are probably interested in. Search for that. – Benjamin Lindley May 20 '12 at 19:10std::coutis also not part of the STL. – Alan Stokes May 20 '12 at 19:11std::coutis just an object of typeostream. You will find all of that in<ostream>provided with your compiler. – Bo Persson May 20 '12 at 19:19