// something wrong in this function . private: allocator T alloc; //allocates the elements T *e... { // destroy the elements and deallocate the memory for(auto p = first_free; p != elements...
Does the quote above mean that I can't copy-assign the elements, so I have to destroy and deallocate ALL the elements first, using this- get_allocator(), and then allocate and cons...