25 #ifndef _DYNAMIC_VECTOR_HPP
26 #define _DYNAMIC_VECTOR_HPP
37 typedef typename std::vector<T>::iterator
iterator;
90 if (index >= _vec.size())
91 _vec.resize(index + 1);
98 assert(index < _vec.size());
std::vector< T >::iterator iterator
JNIEnv jthread jobject jclass jlong size
std::vector< T >::const_iterator const_iterator
T & operator[](size_t index)
Returns the element at the specified index.