I have the following constructor
My private variable areCode:Vector ( T fill [ ], int size)
{
// don't know what goes here
}
int cap;
int num;
T * data;
I am told this contructor uses an array of elements to initialize the Vector.
I am sure this is really easy but I am confused on how and what to do. Thanks in advance.
