up vote 3 down vote favorite
share [g+] share [fb]

For my offline coding needs, I've been using the downloadable STL documentation from SGI. Unfortunately it was last edited in 1999, and doesn't cover any of the TR1.

It's easy enough to find online references for TR1, but can anybody recommend an easily downloadable TR1 reference for working offline? In HTML?

I've downloaded Boost's docs, but I'm not super-happy with this solution. It feels klunky to be jumping around the different sub-libraries of Boost that make up its TR1 implementation, such as boost/unordered/ for <unordered_set> and boost/shared_ptr/ for <memory>, etc. It also doesn't cover the plain old STL, whereas I'd prefer a single reference for both std:: and std::tr1.

I also tried looking at GNU's libstd++ docs, but they didn't seem to be meant for human consumption.

This may end up effectively being a wget question, as in "what flags do I feed to wget to download all of MSDN's online TR1 docs (and nothing else)".

link|improve this question

2  
SGI STL != Standard Library, in case you didn't know. – GMan Sep 4 '10 at 22:38
TR1 isn't part of the STL. The STL is a subset of the standard library, and TR1 is an addition to the standard library, but not formally part of it. – jalf Sep 5 '10 at 2:05
These comments puzzle me. Did I unwittingly imply that SGI STL == std::, or that tr1:: == std::? I'm just looking for downloadable tr1 docs, you guys. – SuperElectric Sep 5 '10 at 2:18
When you said you've been using the STL documentation from SGI. That makes it seem like unless you're using SGI STL for some strange reason, you believe SGI STL works as a reference for the (template portion of the) standard library. See the stl tag for more info, but apologies if we mis-read. – GMan Sep 5 '10 at 3:56
That's pretty much what I meant. I indeed use the standard STL, and have found the SGI STL docs to be useful as a reference. This should serve as a measure of the casualness of the original question. As in, I can deal with mapping hash_set to unordered_set in my head, and recognize that I run the risk of certain functions not mapping onto each other, though this hasn't happened to me yet in practice. So the SGI docs suffice for me, and if there exist TR1 docs of comparable accuracy (and as importantly, ease-of-use), I'd be happy. – SuperElectric Sep 5 '10 at 5:56
feedback

2 Answers

You can just read TR1 itself, here. (PDF Link, 1.4 MB)

link|improve this answer
1  
Thanks; it's the only option so far, but I'm still looking for more of a quick reference in html rather than a monolithic spec in PDF. – SuperElectric Sep 5 '10 at 1:59
feedback

The stand-alone MSDN library is a free download these days.

link|improve this answer
And it also comes with Visual Studio – jalf Sep 5 '10 at 2:06
Whoops, I forgot to specify that I've got a Linux machine, so I can't run the .exe-based installer used by this download. It's also a 2GB download... If I find a windows box, I may still try this, but I'm holding out for now for something more lightweight and cross-platform. – SuperElectric Sep 5 '10 at 2:35
feedback

Your Answer

 
or
required, but never shown

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