Index of /~TDDD38/exercises/Container_Design/src/given_code

[ICO]NameLast modifiedSizeDescription

[PARENTDIR]Parent Directory  -  
[TXT]Container.h2013-08-27 15:35 335  
[TXT]README2013-08-27 15:35 552  

README Exercise Container Design
--------------------------------

Container.h    Rudimentary definition for class Container.

The given class Container is suited for containers having dynamically allocated,
array-like storage for the elements, and with a capacity possibly exceeding the
size (number of stored element). Data member start_ shall point to the start of
the storage, finish_ shall point to the past-last stored element position, and
end_of_storage_ shall point to past the last storage position. A typical
implementation for std::vector.