Lecture 6 - Slide 13 : 40
Container member types

Each standard container defines a number of types - via using type aliases

These type definitions serve as standard type names that apply for all container types

mem-types-1.cpp
Illustration of the use of member types for a list of chars.
mem-types-2.cpp
Same program - now with use of typename as prefix of 'nested dependent type names'.

In C++11 it is often possible to avoid use of container member type names - because auto can be used instead