Esempio n. 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);
	}
Esempio n. 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);
	}
Esempio n. 3
0
 CIterator CBegin() const
 {
     return Empty() ? Null() : CIterator(this, 0);
 }