\brief Returns the maximum number of elements this instance can hold.
| 838 | |
| 839 | //! \brief Returns the maximum number of elements this instance can hold. |
| 840 | unsigned int capacity () const |
| 841 | { |
| 842 | return N; |
| 843 | } |
| 844 | |
| 845 | //! \brief Resizes the vector to the given size |
| 846 | void resize(unsigned int newSize, T fill = T()) |
nothing calls this directly
no outgoing calls
no test coverage detected