\brief Deallocates the vector's memory and destroys all of its elements.
| 702 | |
| 703 | //! \brief Deallocates the vector's memory and destroys all of its elements. |
| 704 | ~vector() |
| 705 | { |
| 706 | clear(); |
| 707 | } |
| 708 | |
| 709 | //! \brief Returns the number of elements currently contained. |
| 710 | unsigned int size(void) const |