TotalContainer.reserve
void reserve(size_t e)Ensures sufficient capacity to accommodate n elements.
Postcondition: capacity >= n
Complexity: log(e - capacity) if e > capacity, otherwise
void reserve(size_t e)Ensures sufficient capacity to accommodate n elements.
Postcondition: capacity >= n
Complexity: log(e - capacity) if e > capacity, otherwise