MeVisLab Toolbox Reference
ml::WEMFastVector< T > Class Template Reference

Dynamic templated vector. More...

#include <WEMFastVector.h>

Public Member Functions

 WEMFastVector (unsigned int init)
 Standard constructor. More...
 
virtual ~WEMFastVector ()
 Standard destructor. More...
 
unsigned int num () const
 Returns the number of elements in this vector. More...
 
Tat (unsigned int pos) const
 Returns the element at the given position, returns NULL if out of range. More...
 
Tfirst ()
 Returns the first element. More...
 
const Tfirst () const
 Returns the first element. More...
 
Tlast ()
 Returns the last element. More...
 
const Tlast () const
 Returns the last element. More...
 
virtual unsigned int append (T *elem)
 Appends the given element to the back of this vector. More...
 
virtual void swap (unsigned int p1, unsigned int p2)
 Swaps the two given elements in this vector. More...
 
virtual void clear ()
 Clears all internal pointers. More...
 
virtual void destroy ()
 Deletes all data. More...
 
virtual void deleteAt (unsigned int pos)
 Deletes the element at the given position. More...
 
virtual void deleteLast ()
 Deletes the last element of this vector. More...
 
virtual int remove (T *elem)
 Deletes the element given by its pointer. More...
 
virtual int lookup (T *elem) const
 Searches for the element in this vector and returns its position. More...
 
virtual int removeUnSwapped (T *elem)
 Deletes the element given by its pointer, searches the element and deletes it, but keeps the order of elements. More...
 
virtual void replace (T *elem, unsigned int pos)
 Replaces the element at the given position with the given element. More...
 

Detailed Description

template<class T>
class ml::WEMFastVector< T >

Dynamic templated vector.

Fast vector as a simple wrapper around a fixed size array of <T>. All elements are deleted on destruction of the vector, no need to delete elements in between!

Definition at line 26 of file WEMFastVector.h.

Constructor & Destructor Documentation

◆ WEMFastVector()

template<class T >
ml::WEMFastVector< T >::WEMFastVector ( unsigned int  init)

Standard constructor.

Definition at line 83 of file WEMFastVector.h.

References ml::library::init(), and T.

◆ ~WEMFastVector()

template<class T >
ml::WEMFastVector< T >::~WEMFastVector
virtual

Standard destructor.

Definition at line 98 of file WEMFastVector.h.

References ml::library::destroy().

Member Function Documentation

◆ append()

template<class T >
unsigned int ml::WEMFastVector< T >::append ( T elem)
virtual

Appends the given element to the back of this vector.

Definition at line 129 of file WEMFastVector.h.

◆ at()

template<class T >
T* ml::WEMFastVector< T >::at ( unsigned int  pos) const
inline

Returns the element at the given position, returns NULL if out of range.

Definition at line 37 of file WEMFastVector.h.

◆ clear()

template<class T >
void ml::WEMFastVector< T >::clear ( void  )
virtual

Clears all internal pointers.

This does not delete the elements in the vector!

Definition at line 108 of file WEMFastVector.h.

◆ deleteAt()

template<class T >
void ml::WEMFastVector< T >::deleteAt ( unsigned int  pos)
virtual

Deletes the element at the given position.

Definition at line 169 of file WEMFastVector.h.

◆ deleteLast()

template<class T >
void ml::WEMFastVector< T >::deleteLast
virtual

Deletes the last element of this vector.

Definition at line 183 of file WEMFastVector.h.

◆ destroy()

template<class T >
void ml::WEMFastVector< T >::destroy
virtual

Deletes all data.

Definition at line 116 of file WEMFastVector.h.

◆ first() [1/2]

template<class T >
T* ml::WEMFastVector< T >::first ( )
inline

Returns the first element.

Definition at line 39 of file WEMFastVector.h.

References boost::at().

◆ first() [2/2]

template<class T >
const T* ml::WEMFastVector< T >::first ( ) const
inline

Returns the first element.

Definition at line 41 of file WEMFastVector.h.

References boost::at().

◆ last() [1/2]

template<class T >
T* ml::WEMFastVector< T >::last ( )
inline

Returns the last element.

Definition at line 43 of file WEMFastVector.h.

References boost::at().

◆ last() [2/2]

template<class T >
const T* ml::WEMFastVector< T >::last ( ) const
inline

Returns the last element.

Definition at line 45 of file WEMFastVector.h.

References boost::at().

◆ lookup()

template<class T >
int ml::WEMFastVector< T >::lookup ( T elem) const
virtual

Searches for the element in this vector and returns its position.

Definition at line 191 of file WEMFastVector.h.

References boost::at().

◆ num()

template<class T >
unsigned int ml::WEMFastVector< T >::num ( ) const
inline

Returns the number of elements in this vector.

Definition at line 35 of file WEMFastVector.h.

◆ remove()

template<class T >
int ml::WEMFastVector< T >::remove ( T elem)
virtual

Deletes the element given by its pointer.

Definition at line 208 of file WEMFastVector.h.

◆ removeUnSwapped()

template<class T >
int ml::WEMFastVector< T >::removeUnSwapped ( T elem)
virtual

Deletes the element given by its pointer, searches the element and deletes it, but keeps the order of elements.

Definition at line 221 of file WEMFastVector.h.

◆ replace()

template<class T >
void ml::WEMFastVector< T >::replace ( T elem,
unsigned int  pos 
)
virtual

Replaces the element at the given position with the given element.

Definition at line 145 of file WEMFastVector.h.

◆ swap()

template<class T >
void ml::WEMFastVector< T >::swap ( unsigned int  p1,
unsigned int  p2 
)
virtual

Swaps the two given elements in this vector.

Definition at line 153 of file WEMFastVector.h.

References T.


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