Hello.
I am trying to define a custom Array class using the stl.
the following code gives several compile errors.
template< typename T, typename Allocator=allocator<T> > class Array
{
public:
// typedefs.
typedef T value_type;
typedef Allocator allocator_type;
typedef Allocator::reference...