OGRE  2.2.4
Object-Oriented Graphics Rendering Engine
Ogre::SmallVectorTemplateBase< T, true > Class Template Reference

SmallVectorTemplateBase<isPodLike = true> - This is where we put method implementations that are designed to work with POD-like T's. More...

#include <OgreSmallVector.h>

+ Inheritance diagram for Ogre::SmallVectorTemplateBase< T, true >:

Public Types

typedef const T * const_iterator
 
typedef const T * const_iterator
 
typedef const T * const_pointer
 
typedef const T * const_pointer
 
typedef const T & const_reference
 
typedef const T & const_reference
 
typedef std::reverse_iterator< const_iteratorconst_reverse_iterator
 
typedef std::reverse_iterator< const_iteratorconst_reverse_iterator
 
typedef ptrdiff_t difference_type
 
typedef ptrdiff_t difference_type
 
typedef T * iterator
 
typedef T * iterator
 
typedef T * pointer
 
typedef T * pointer
 
typedef T & reference
 
typedef T & reference
 
typedef std::reverse_iterator< iteratorreverse_iterator
 
typedef std::reverse_iterator< iteratorreverse_iterator
 
typedef size_t size_type
 
typedef size_t size_type
 
typedef T value_type
 
typedef T value_type
 

Public Member Functions

 SmallVectorTemplateBase (size_t Size)
 
 SmallVectorTemplateBase (size_t Size)
 
reference back ()
 
const_reference back () const
 
reference back ()
 
const_reference back () const
 
iterator begin ()
 
const_iterator begin () const
 
iterator begin ()
 
const_iterator begin () const
 
size_t capacity () const
 capacity - Return the total number of elements in the currently allocated buffer. More...
 
size_t capacity () const
 capacity - Return the total number of elements in the currently allocated buffer. More...
 
pointer data ()
 data - Return a pointer to the vector's buffer, even if empty(). More...
 
const_pointer data () const
 data - Return a pointer to the vector's buffer, even if empty(). More...
 
pointer data ()
 data - Return a pointer to the vector's buffer, even if empty(). More...
 
const_pointer data () const
 data - Return a pointer to the vector's buffer, even if empty(). More...
 
bool empty () const
 
bool empty () const
 
iterator end ()
 
const_iterator end () const
 
iterator end ()
 
const_iterator end () const
 
reference front ()
 
const_reference front () const
 
reference front ()
 
const_reference front () const
 
void grow (size_t MinSize=0)
 grow - double the size of the allocated memory, guaranteeing space for at least one more element or MinSize if specified. More...
 
void grow (size_t MinSize=0)
 grow - double the size of the allocated memory, guaranteeing space for at least one more element or MinSize if specified. More...
 
size_type max_size () const
 
size_type max_size () const
 
reference operator[] (unsigned idx)
 
const_reference operator[] (unsigned idx) const
 
reference operator[] (unsigned idx)
 
const_reference operator[] (unsigned idx) const
 
reverse_iterator rbegin ()
 
const_reverse_iterator rbegin () const
 
reverse_iterator rbegin ()
 
const_reverse_iterator rbegin () const
 
reverse_iterator rend ()
 
const_reverse_iterator rend () const
 
reverse_iterator rend ()
 
const_reverse_iterator rend () const
 
size_type size () const
 
size_type size () const
 

Static Public Member Functions

static void destroy_range (T *, T *)
 
static void destroy_range (T *, T *)
 
template<typename It1 , typename It2 >
static void uninitialized_copy (It1 I, It1 E, It2 Dest)
 uninitialized_copy - Copy the range [I, E) onto the uninitialized memory starting with "Dest", constructing elements into it as needed. More...
 
template<typename T1 , typename T2 >
static void uninitialized_copy (T1 *I, T1 *E, T2 *Dest)
 uninitialized_copy - Copy the range [I, E) onto the uninitialized memory starting with "Dest", constructing elements into it as needed. More...
 
template<typename It1 , typename It2 >
static void uninitialized_copy (It1 I, It1 E, It2 Dest)
 uninitialized_copy - Copy the range [I, E) onto the uninitialized memory starting with "Dest", constructing elements into it as needed. More...
 
template<typename T1 , typename T2 >
static void uninitialized_copy (T1 *I, T1 *E, T2 *Dest)
 uninitialized_copy - Copy the range [I, E) onto the uninitialized memory starting with "Dest", constructing elements into it as needed. More...
 

Detailed Description

template<typename T>
class Ogre::SmallVectorTemplateBase< T, true >

SmallVectorTemplateBase<isPodLike = true> - This is where we put method implementations that are designed to work with POD-like T's.

Member Typedef Documentation

◆ const_iterator [1/2]

template<typename T>
typedef const T* Ogre::SmallVectorTemplateCommon< T >::const_iterator
inherited

◆ const_iterator [2/2]

template<typename T>
typedef const T* Ogre::SmallVectorTemplateCommon< T >::const_iterator
inherited

◆ const_pointer [1/2]

template<typename T>
typedef const T* Ogre::SmallVectorTemplateCommon< T >::const_pointer
inherited

◆ const_pointer [2/2]

template<typename T>
typedef const T* Ogre::SmallVectorTemplateCommon< T >::const_pointer
inherited

◆ const_reference [1/2]

template<typename T>
typedef const T& Ogre::SmallVectorTemplateCommon< T >::const_reference
inherited

◆ const_reference [2/2]

template<typename T>
typedef const T& Ogre::SmallVectorTemplateCommon< T >::const_reference
inherited

◆ const_reverse_iterator [1/2]

template<typename T>
typedef std::reverse_iterator<const_iterator> Ogre::SmallVectorTemplateCommon< T >::const_reverse_iterator
inherited

◆ const_reverse_iterator [2/2]

template<typename T>
typedef std::reverse_iterator<const_iterator> Ogre::SmallVectorTemplateCommon< T >::const_reverse_iterator
inherited

◆ difference_type [1/2]

template<typename T>
typedef ptrdiff_t Ogre::SmallVectorTemplateCommon< T >::difference_type
inherited

◆ difference_type [2/2]

template<typename T>
typedef ptrdiff_t Ogre::SmallVectorTemplateCommon< T >::difference_type
inherited

◆ iterator [1/2]

template<typename T>
typedef T* Ogre::SmallVectorTemplateCommon< T >::iterator
inherited

◆ iterator [2/2]

template<typename T>
typedef T* Ogre::SmallVectorTemplateCommon< T >::iterator
inherited

◆ pointer [1/2]

template<typename T>
typedef T* Ogre::SmallVectorTemplateCommon< T >::pointer
inherited

◆ pointer [2/2]

template<typename T>
typedef T* Ogre::SmallVectorTemplateCommon< T >::pointer
inherited

◆ reference [1/2]

template<typename T>
typedef T& Ogre::SmallVectorTemplateCommon< T >::reference
inherited

◆ reference [2/2]

template<typename T>
typedef T& Ogre::SmallVectorTemplateCommon< T >::reference
inherited

◆ reverse_iterator [1/2]

template<typename T>
typedef std::reverse_iterator<iterator> Ogre::SmallVectorTemplateCommon< T >::reverse_iterator
inherited

◆ reverse_iterator [2/2]

template<typename T>
typedef std::reverse_iterator<iterator> Ogre::SmallVectorTemplateCommon< T >::reverse_iterator
inherited

◆ size_type [1/2]

template<typename T>
typedef size_t Ogre::SmallVectorTemplateCommon< T >::size_type
inherited

◆ size_type [2/2]

template<typename T>
typedef size_t Ogre::SmallVectorTemplateCommon< T >::size_type
inherited

◆ value_type [1/2]

template<typename T>
typedef T Ogre::SmallVectorTemplateCommon< T >::value_type
inherited

◆ value_type [2/2]

template<typename T>
typedef T Ogre::SmallVectorTemplateCommon< T >::value_type
inherited

Constructor & Destructor Documentation

◆ SmallVectorTemplateBase() [1/2]

template<typename T >
Ogre::SmallVectorTemplateBase< T, true >::SmallVectorTemplateBase ( size_t  Size)
inline

◆ SmallVectorTemplateBase() [2/2]

template<typename T >
Ogre::SmallVectorTemplateBase< T, true >::SmallVectorTemplateBase ( size_t  Size)
inline

Member Function Documentation

◆ back() [1/4]

template<typename T>
reference Ogre::SmallVectorTemplateCommon< T >::back ( )
inlineinherited

◆ back() [2/4]

template<typename T>
const_reference Ogre::SmallVectorTemplateCommon< T >::back ( ) const
inlineinherited

◆ back() [3/4]

template<typename T>
reference Ogre::SmallVectorTemplateCommon< T >::back ( )
inlineinherited

◆ back() [4/4]

template<typename T>
const_reference Ogre::SmallVectorTemplateCommon< T >::back ( ) const
inlineinherited

◆ begin() [1/4]

◆ begin() [2/4]

template<typename T>
const_iterator Ogre::SmallVectorTemplateCommon< T >::begin ( ) const
inlineinherited

◆ begin() [3/4]

template<typename T>
iterator Ogre::SmallVectorTemplateCommon< T >::begin ( )
inlineinherited

◆ begin() [4/4]

template<typename T>
const_iterator Ogre::SmallVectorTemplateCommon< T >::begin ( ) const
inlineinherited

◆ capacity() [1/2]

template<typename T>
size_t Ogre::SmallVectorTemplateCommon< T >::capacity ( ) const
inlineinherited

capacity - Return the total number of elements in the currently allocated buffer.

Referenced by Ogre::SmallVectorImpl< Triangle * >::set_size(), and Ogre::SmallVectorImpl< Triangle * >::swap().

◆ capacity() [2/2]

template<typename T>
size_t Ogre::SmallVectorTemplateCommon< T >::capacity ( ) const
inlineinherited

capacity - Return the total number of elements in the currently allocated buffer.

◆ data() [1/4]

template<typename T>
pointer Ogre::SmallVectorTemplateCommon< T >::data ( )
inlineinherited

data - Return a pointer to the vector's buffer, even if empty().

◆ data() [2/4]

template<typename T>
const_pointer Ogre::SmallVectorTemplateCommon< T >::data ( ) const
inlineinherited

data - Return a pointer to the vector's buffer, even if empty().

◆ data() [3/4]

template<typename T>
pointer Ogre::SmallVectorTemplateCommon< T >::data ( )
inlineinherited

data - Return a pointer to the vector's buffer, even if empty().

◆ data() [4/4]

template<typename T>
const_pointer Ogre::SmallVectorTemplateCommon< T >::data ( ) const
inlineinherited

data - Return a pointer to the vector's buffer, even if empty().

◆ destroy_range() [1/2]

template<typename T >
static void Ogre::SmallVectorTemplateBase< T, true >::destroy_range ( T *  ,
T *   
)
inlinestatic

◆ destroy_range() [2/2]

template<typename T >
static void Ogre::SmallVectorTemplateBase< T, true >::destroy_range ( T *  ,
T *   
)
inlinestatic

◆ empty() [1/2]

bool Ogre::SmallVectorBase::empty ( void  ) const
inlineinherited

◆ empty() [2/2]

bool Ogre::SmallVectorBase::empty ( void  ) const
inlineinherited

◆ end() [1/4]

◆ end() [2/4]

template<typename T>
const_iterator Ogre::SmallVectorTemplateCommon< T >::end ( void  ) const
inlineinherited

◆ end() [3/4]

template<typename T>
iterator Ogre::SmallVectorTemplateCommon< T >::end ( void  )
inlineinherited

◆ end() [4/4]

template<typename T>
const_iterator Ogre::SmallVectorTemplateCommon< T >::end ( void  ) const
inlineinherited

◆ front() [1/4]

template<typename T>
reference Ogre::SmallVectorTemplateCommon< T >::front ( )
inlineinherited

◆ front() [2/4]

template<typename T>
const_reference Ogre::SmallVectorTemplateCommon< T >::front ( ) const
inlineinherited

◆ front() [3/4]

template<typename T>
reference Ogre::SmallVectorTemplateCommon< T >::front ( )
inlineinherited

◆ front() [4/4]

template<typename T>
const_reference Ogre::SmallVectorTemplateCommon< T >::front ( ) const
inlineinherited

◆ grow() [1/2]

template<typename T >
void Ogre::SmallVectorTemplateBase< T, true >::grow ( size_t  MinSize = 0)
inline

grow - double the size of the allocated memory, guaranteeing space for at least one more element or MinSize if specified.

◆ grow() [2/2]

template<typename T >
void Ogre::SmallVectorTemplateBase< T, true >::grow ( size_t  MinSize = 0)
inline

grow - double the size of the allocated memory, guaranteeing space for at least one more element or MinSize if specified.

◆ max_size() [1/2]

template<typename T>
size_type Ogre::SmallVectorTemplateCommon< T >::max_size ( ) const
inlineinherited

◆ max_size() [2/2]

template<typename T>
size_type Ogre::SmallVectorTemplateCommon< T >::max_size ( ) const
inlineinherited

◆ operator[]() [1/4]

template<typename T>
reference Ogre::SmallVectorTemplateCommon< T >::operator[] ( unsigned  idx)
inlineinherited

◆ operator[]() [2/4]

template<typename T>
const_reference Ogre::SmallVectorTemplateCommon< T >::operator[] ( unsigned  idx) const
inlineinherited

◆ operator[]() [3/4]

template<typename T>
reference Ogre::SmallVectorTemplateCommon< T >::operator[] ( unsigned  idx)
inlineinherited

◆ operator[]() [4/4]

template<typename T>
const_reference Ogre::SmallVectorTemplateCommon< T >::operator[] ( unsigned  idx) const
inlineinherited

◆ rbegin() [1/4]

template<typename T>
reverse_iterator Ogre::SmallVectorTemplateCommon< T >::rbegin ( )
inlineinherited

◆ rbegin() [2/4]

template<typename T>
const_reverse_iterator Ogre::SmallVectorTemplateCommon< T >::rbegin ( ) const
inlineinherited

◆ rbegin() [3/4]

template<typename T>
reverse_iterator Ogre::SmallVectorTemplateCommon< T >::rbegin ( )
inlineinherited

◆ rbegin() [4/4]

template<typename T>
const_reverse_iterator Ogre::SmallVectorTemplateCommon< T >::rbegin ( ) const
inlineinherited

◆ rend() [1/4]

template<typename T>
reverse_iterator Ogre::SmallVectorTemplateCommon< T >::rend ( )
inlineinherited

◆ rend() [2/4]

template<typename T>
const_reverse_iterator Ogre::SmallVectorTemplateCommon< T >::rend ( ) const
inlineinherited

◆ rend() [3/4]

template<typename T>
reverse_iterator Ogre::SmallVectorTemplateCommon< T >::rend ( )
inlineinherited

◆ rend() [4/4]

template<typename T>
const_reverse_iterator Ogre::SmallVectorTemplateCommon< T >::rend ( ) const
inlineinherited

◆ size() [1/2]

◆ size() [2/2]

template<typename T>
size_type Ogre::SmallVectorTemplateCommon< T >::size ( void  ) const
inlineinherited

◆ uninitialized_copy() [1/4]

template<typename T >
template<typename It1 , typename It2 >
static void Ogre::SmallVectorTemplateBase< T, true >::uninitialized_copy ( It1  I,
It1  E,
It2  Dest 
)
inlinestatic

uninitialized_copy - Copy the range [I, E) onto the uninitialized memory starting with "Dest", constructing elements into it as needed.

◆ uninitialized_copy() [2/4]

template<typename T >
template<typename T1 , typename T2 >
static void Ogre::SmallVectorTemplateBase< T, true >::uninitialized_copy ( T1 *  I,
T1 *  E,
T2 *  Dest 
)
inlinestatic

uninitialized_copy - Copy the range [I, E) onto the uninitialized memory starting with "Dest", constructing elements into it as needed.

◆ uninitialized_copy() [3/4]

template<typename T >
template<typename It1 , typename It2 >
static void Ogre::SmallVectorTemplateBase< T, true >::uninitialized_copy ( It1  I,
It1  E,
It2  Dest 
)
inlinestatic

uninitialized_copy - Copy the range [I, E) onto the uninitialized memory starting with "Dest", constructing elements into it as needed.

◆ uninitialized_copy() [4/4]

template<typename T >
template<typename T1 , typename T2 >
static void Ogre::SmallVectorTemplateBase< T, true >::uninitialized_copy ( T1 *  I,
T1 *  E,
T2 *  Dest 
)
inlinestatic

uninitialized_copy - Copy the range [I, E) onto the uninitialized memory starting with "Dest", constructing elements into it as needed.


The documentation for this class was generated from the following file: