| 2646 | const_iterator constEnd() const { return mData.constEnd(); } |
| 2647 | iterator begin() { return mData.begin()+mPreallocSize; } |
| 2648 | iterator end() { return mData.end(); } |
| 2649 | const_iterator findBegin(double sortKey, bool expandedRange=true) const; |
| 2650 | const_iterator findEnd(double sortKey, bool expandedRange=true) const; |
| 2651 | const_iterator at(int index) const { return constBegin()+qBound(0, index, size()); } |
no outgoing calls
no test coverage detected