Dynamic Array Template and Iterator Demo
[dynamic_array_template.git] / README
1 Dynamic (growable/shrinkable) Array for any type.
2
3 This code demonstrates a way of defining a custom container using C++ templates that
4 also implement a C++ Standard Template Library (STL) style iterator.
5
6 The Iterator code further demonstrates how one template iterator class definition can be
7 used to generate constant and non-constant iterators.
8
9 To build:
10
11 make
12
13 To clean-up:
14
15 make clean
16