wxVector<T> is a template class which implements most of the @c std::vector
class and can be used like it.
- If wxWidgets is compiled in STL mode, wxVector will just be a typedef to @c
- std::vector. Just like for @c std::vector, objects stored in wxVector<T>
- need to be @e assignable but don't have to be @e default constructible.
+ If wxWidgets is compiled in STL mode, wxVector will just be a typedef to
+ @c std::vector. Just like for @c std::vector, objects stored in wxVector<T>
+ need to be @e assignable but don't have to be @e "default constructible".
Please refer to the STL documentation for further information.
@nolibrary
@category{containers}
- @see @ref overview_container, wxListT, wxArrayT
+ @see @ref overview_container, wxList<T>, wxArray<T>
*/
template<typename T>
class wxVector<T>
~wxVector();
/**
- Returns item at position @e idx.
+ Returns item at position @a idx.
*/
const value_type& at(size_type idx) const;
/**
- Returns item at position @e idx.
+ Returns item at position @a idx.
*/
value_type& at(size_type idx);
/**
Erase items in the range @a first to @a last (@a last is not erased).
- @return Iterator pointing to the item immediately after the
- erased range.
+ @return Iterator pointing to the item immediately after the erased
+ range.
*/
iterator erase(iterator first, iterator last);
/**
Assignment operator.
*/
- wxVectorT& operator operator=(const wxVector<T>& vb);
+ wxVector& operator=(const wxVector& vb);
/**
- Returns item at position @e idx.
+ Returns item at position @a idx.
*/
const value_type& operator[](size_type idx) const;
/**
- Returns item at position @e idx.
+ Returns item at position @a idx.
*/
value_type& operator[](size_type idx);
@see capacity()
*/
void reserve(size_type n);
+
+ /**
+ Returns the size of the vector.
+ */
+ size_type size() const;
};