예제 #1
0
	/**
	 * Grabs a constant iterator at the beginning of the vector.
	 * @return a constant iterator at the beginning of the vector.
	 */
	inline CIterator begin() const
	{
		return CIterator(mArray, mCount, 0);
	}
예제 #2
0
	/**
	 * Grabs a constant iterator at the end of the vector.
	 * @return a constant iterator at the end of the vector.
	 */
	inline CIterator end() const
	{
		return CIterator(mArray, mCount, mCount);
	}
예제 #3
0
파일: cachequeue.hpp 프로젝트: etorth/mir2x
 CIterator CBegin() const
 {
     return Empty() ? Null() : CIterator(this, 0);
 }