Fixed a typo in the spec.

This commit is contained in:
Davis King 2011-12-15 20:51:02 -05:00
parent 331b2d753f
commit 1ecfd5bb5c

View File

@ -37,10 +37,10 @@ namespace dlib
ensures
- #size() == new_size
- #max_size() == max(new_size,max_size())
- for all i < size():
- for all i < size() && i < new_size:
- #(*this)[i] == (*this)[i]
(i.e. all the original elements of *this are still present
and at their same positions.)
(i.e. All the original elements of *this which were at index
values less than new_size are unmodified.)
- for all valid i >= size():
- #(*this)[i] has an undefined value
(i.e. any new elements of the array have an undefined value)