Standard Library Containers Standard Containers std:: Containers

    Sequence Containers

    Associative Containers

    Containers that allow non-unique keys:
    • multiset
    • multimap
    • unordered_multiset
    • unordered_multimap

    Special Containers

    Views

    • lightweight (= cheap to copy, can be passed by value)
    • non-owning (= not responsible for allocating or deleting memory)

    view of a contiguous sequence

    view of a string-like character sequence