> I sure will. I didn't realise STL methods(?) were in MSDN until I
> specifically looked up rotate. I will do a little exploring first when
> I'm next in the mood. I hope there's a way of getting to some sort of
> index I can browse from for just STL methods - fumbling around in the
> dark doesn't exactly help you learn these things too easily! (And yes,
> I know someone's going to suggest a book, but honestly I have a glut
> of programming books and I can't get to read them - at least I do look
> things up in MSDN now and then!).
>
> I just hope the explanations are a bit better than for rotate {;v)There is an index available. Here's how to use it. Find the "Standard C++ Library Reference" page on your MSDN version. For me (using April 2003 MSDN), it's located at: .NET Development\Visual Studio .NET\Product Documentation\Visual C++\Reference\Visual C++ Libraries\Standard C++ Library Reference This page has a link to a "Header files" section, and that page lists all standard C++ library headers. From there, you select the algorithm header for example, and that takes you to a remarks page for that header, which includes basic information, and links to a "header members" page, which lists all the classes and functions in that header file with a short description on them. Each of them link to that function's or class's page which documents it in detail. ------------- Ehsan Akhgari Farda Technology (http://www.farda-tech.com/) List Owner: [EMAIL PROTECTED] [ Email: [EMAIL PROTECTED] ] [ WWW: http://www.beginthread.com/Ehsan ] Every deep thinker is more afraid of being understood than of being misunderstood. The latter perhaps wounds his vanity, but the former wounds his heart, his sympathy, which always says: "Ah, why would you also have as hard a time of it as I have?" -Beyond Good And Evil, F. W. Nietzsche _______________________________________________ msvc mailing list [EMAIL PROTECTED] See http://beginthread.com/mailman/listinfo/msvc_beginthread.com for subscription changes, and list archive.
