Sequential Container Interface
- Required
- Proper Type
- Empty(), Size()
- Clear()
- Forward Iterators
- Iterator Support: Begin(), End()
- At least one "positional" operation such as:
- Front or Back
- PushFront or PopFront
- PushBack or PopBack
- Insert(i,t) or Remove(i)
- Optional
- Front(), PushFront(t), PopFront()
- Back(), PushBack(t), PopBack()
- Insert(I,t), Remove(I)
- Bidirectional or Random Access Iterators
- Iterator Support: rBegin(), rEnd()
|