Strings In:

Constructors and initialization

Subscript access

Resize

Empty

Assignment, concatenation + +=

Comparisons == < > etc

Searching - find and its relatives

<< >>

Concepts

 

Vectors In:

Constructors and initialization

Subscript access

Size

Capacity?

Push_back

Generic functions: reverse,count_if,replace,sort

(Some) iterators (e.g. use with generic functions)

Concepts

 

Lists In:

Constructors, initialization and assignment

Front, back

Push_front, push_back

Pop_front, pop_back

Erase, remove

Empty, size

Reverse, sort

Generic functions: reverse,count_if,replace,

iterators (use with generic functions, and moving through lists)

Concepts