Returns true if the array is empty, false otherwise.*/
| 159 | |
| 160 | /** Returns true if the array is empty, false otherwise.*/ |
| 161 | bool empty() const { return mCount == 0; } |
| 162 | |
| 163 | /** Return s the index'th element in the array. No check is performed, if the index is out of bounds.*/ |
| 164 | Type& operator[] ( size_t index ) { COLLADABU_ASSERT(index < mCapacity); return mData[index]; } |
no outgoing calls
no test coverage detected