|
Aleph-w 3.0
A C++ Library for Data Structures and Algorithms
|
Concept for Aleph-w sequential containers that can be iterated. More...
#include <ah-concepts.H>
Concept for Aleph-w sequential containers that can be iterated.
This refines AlephSequentialContainer by additionally requiring get_it() to be available in a const container, so that algorithms can traverse items in read-only mode.
It is intended for Aleph-w sequential containers such as:
DynList<T>DynDlist<T>Array<T>DynArray<T>Although some associative containers may define methods with names like append(), they typically do not satisfy the full sequential interface required here (notably mutable_for_each() with an Item_Type &), so they are excluded by design.
| C | Container type to check. |
Definition at line 222 of file ah-concepts.H.