Possible Duplicate:
What's this STL vs. “C++ Standard Library” fight all about?

I am very much used to the term STL ("Standard Template Library") and I catch myself often using it when I really mean the C++ Standard Library. So, since almost everything in the C++(-11) Standard Library is a template nowadays, I wonder: Is there a definition what is STL and what is not, in the C++Standard-Lib? Maybe containers, streams, algorithms, etc?

Or should I just stop using the term "STL", because it's the historic one that SGI (correct?) used for their lib years back? It will be difficult...

link|improve this question

(Sorry, I marked the wrong duplicate) – Lightness Races in Orbit Sep 20 '11 at 9:15
Someone else marked it right, thanks guys. – towi Sep 20 '11 at 9:35
feedback

closed as exact duplicate by Als, Didier Trosset, Jon, Lightness Races in Orbit, Nicol Bolas Sep 20 '11 at 9:14

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 1 down vote accepted

STL has evolved into C++ Standard Library, it contained containers, iterators and algorithms but not streams. It is better not to use term "STL" it is the name of the old library.

link|improve this answer
feedback

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