<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2-ppt DokuWiki" -->
<?xml-stylesheet href="http://cppreference.com/wiki/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="http://cppreference.com/wiki/feed.php">
        <title>C++ Reference stl</title>
        <description></description>
        <link>http://cppreference.com/wiki/</link>
        <image rdf:resource="http://cppreference.com/wiki/lib/images/favicon.ico" />
       <dc:date>2010-09-08T23:00:29-07:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="http://cppreference.com/wiki/stl/containers?rev=1224024131&amp;do=diff"/>
                <rdf:li rdf:resource="http://cppreference.com/wiki/stl/iterators?rev=1280224902&amp;do=diff"/>
                <rdf:li rdf:resource="http://cppreference.com/wiki/stl/start?rev=1281012035&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="http://cppreference.com/wiki/lib/images/favicon.ico">
        <title>C++ Reference</title>
        <link>http://cppreference.com/wiki/</link>
        <url>http://cppreference.com/wiki/lib/images/favicon.ico</url>
    </image>
    <item rdf:about="http://cppreference.com/wiki/stl/containers?rev=1224024131&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2008-10-14T15:42:11-07:00</dc:date>
        <title>C++ Containers</title>
        <link>http://cppreference.com/wiki/stl/containers?rev=1224024131&amp;do=diff</link>
        <description>C++ Containers


The C++ Containers (C++ Vectors, C++ Lists, etc.) are generic
vessels capable of holding many different types of data. For example,
the following statement creates a vector of integers:

  vector&lt;int&gt; v;

Containers can hold standard objects (like the int in the above example) as
well as custom objects, as long as the objects in the container meet a few
requirements:</description>
    </item>
    <item rdf:about="http://cppreference.com/wiki/stl/iterators?rev=1280224902&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2010-07-27T03:01:42-07:00</dc:date>
        <title>C++ Iterators</title>
        <link>http://cppreference.com/wiki/stl/iterators?rev=1280224902&amp;do=diff</link>
        <description>C++ Iterators


Iterators are used to access elements of a sequence, and can be used
in a similar manner to pointers. For example, one might use an iterator to step
through the elements of a vector.

The following code creates and uses an iterator with a vector:</description>
    </item>
    <item rdf:about="http://cppreference.com/wiki/stl/start?rev=1281012035&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2010-08-05T05:40:35-07:00</dc:date>
        <title>C++ Standard Template Library</title>
        <link>http://cppreference.com/wiki/stl/start?rev=1281012035&amp;do=diff</link>
        <description>C++ Standard Template Library


The C++ STL (Standard Template Library) is a generic collection of class
templates and algorithms that allow programmers to easily implement standard
data structures like queues, lists and stacks.


STL Containers


The C++ STL provides two kinds of containers:</description>
    </item>
</rdf:RDF>
