Changes between Version 6 and Version 7 of code/FAQ
- Timestamp:
- Sep 25, 2008, 2:00:33 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
code/FAQ
v6 v7 49 49 All those are STL containers. They're part of the C++ standard and available on every system. Read the [wiki:howto/STL page about STL usage] for help and more information. 50 50 51 === Why should I use STL containers? They're so weird ...===51 === Why should I use STL containers? They're so weird! === 52 52 They might look complicated, but as you get used to them, they'll be your friends. Everyone knows STL containers, so no one will missunderstand your code. They're powerful and bug free and are well [http://www.cplusplus.com/reference/stl/ documented]. Please don't implement your own list for every chickenshit.