Returns a pointer to the first element of this vector.
| 247 | |
| 248 | //! Returns a pointer to the first element of this vector. |
| 249 | T* Ptr() |
| 250 | { |
| 251 | return v_; |
| 252 | } |
| 253 | |
| 254 | //! Returns a constant pointer to the first element of this vector. |
| 255 | const T* Ptr() const |
no outgoing calls