ProteoWizard
Classes | Public Types | Public Member Functions | Private Member Functions | Private Attributes
auto_vector< T > Class Template Reference

#include <auto_vector.h>

List of all members.

Classes

class  auto_lvalue

Public Types

typedef std::vector< T * >
::iterator 
iterator
typedef std::vector< T * >
::const_iterator 
const_iterator
typedef std::vector< T * >
::reverse_iterator 
reverse_iterator
typedef std::vector< T * >
::const_reverse_iterator 
const_reverse_iterator

Public Member Functions

 auto_vector (size_t capacity=0)
 ~auto_vector ()
size_t size () const
size_t capacity () const
void reserve (size_t count)
void resize (unsigned int newSize)
void erase (size_t idx)
void clear ()
void compact ()
void swap (auto_vector< T > &other)
T const * operator[] (size_t i) const
auto_lvalue operator[] (size_t i)
void assign (size_t i, std::auto_ptr< T > p)
void assign_direct (size_t i, T *p)
void insert (size_t idx, std::auto_ptr< T > p)
void push_back (std::auto_ptr< T > p)
std::auto_ptr< T > pop_back ()
T * back ()
T const * back () const
T * front ()
T const * front () const
iterator begin ()
iterator end ()
const_iterator begin () const
const_iterator end () const
reverse_iterator rbegin ()
reverse_iterator rend ()
const_reverse_iterator rbegin () const
const_reverse_iterator rend () const
iterator erase (iterator it)
size_t ToIndex (iterator const &it)
size_t ToIndex (reverse_iterator const &rit)
iterator ToIter (size_t idx)
reverse_iterator ToRIter (size_t idx)

Private Member Functions

 auto_vector (auto_vector< T > const &src)
auto_vector< T > & operator= (auto_vector< T > const &src)

Private Attributes

std::vector< T * > _arr

Detailed Description

template<class T>
class auto_vector< T >

Definition at line 23 of file auto_vector.h.


Member Typedef Documentation

template<class T>
typedef std::vector<T*>::iterator auto_vector< T >::iterator

Definition at line 75 of file auto_vector.h.

template<class T>
typedef std::vector<T*>::const_iterator auto_vector< T >::const_iterator

Definition at line 76 of file auto_vector.h.

template<class T>
typedef std::vector<T*>::reverse_iterator auto_vector< T >::reverse_iterator

Definition at line 77 of file auto_vector.h.

template<class T>
typedef std::vector<T*>::const_reverse_iterator auto_vector< T >::const_reverse_iterator

Definition at line 78 of file auto_vector.h.


Constructor & Destructor Documentation

template<class T >
auto_vector< T >::auto_vector ( size_t  capacity = 0)
explicit

Definition at line 105 of file auto_vector.h.

{
_arr.reserve (capacity);
}
template<class T >
auto_vector< T >::~auto_vector ( )

Definition at line 111 of file auto_vector.h.

{
clear ();
}
template<class T>
auto_vector< T >::auto_vector ( auto_vector< T > const &  src)
private

Member Function Documentation

template<class T>
size_t auto_vector< T >::size ( ) const
inline

Definition at line 47 of file auto_vector.h.

References auto_vector< T >::_arr.

{ return _arr.size (); }
template<class T>
size_t auto_vector< T >::capacity ( ) const
inline

Definition at line 48 of file auto_vector.h.

References auto_vector< T >::_arr.

{ return _arr.capacity (); }
template<class T >
void auto_vector< T >::reserve ( size_t  count)
inline

Definition at line 225 of file auto_vector.h.

References auto_vector< T >::reserve().

Referenced by auto_vector< T >::reserve().

{
_arr.reserve (count);
}
template<class T >
void auto_vector< T >::resize ( unsigned int  newSize)
inline

Definition at line 231 of file auto_vector.h.

{
if (newSize < size ())
std::for_each (ToIter (newSize), end (), DeletePtr<T> ());
_arr.resize (newSize);
}
template<class T >
void auto_vector< T >::erase ( size_t  idx)

Definition at line 168 of file auto_vector.h.

{
assert (idx < size ());
// Delete item
delete _arr [idx];
// Compact array
_arr.erase (ToIter (idx));
}
template<class T >
void auto_vector< T >::clear ( )

Definition at line 143 of file auto_vector.h.

{
std::for_each (begin (), end (), DeletePtr<T> ());
_arr.clear ();
}
template<class T >
void auto_vector< T >::compact ( )

Definition at line 186 of file auto_vector.h.

{
// move null pointers to the end
T * null = 0;
iterator pos = std::remove (begin (), end (), null);
_arr.resize (pos - begin ());
}
template<class T>
void auto_vector< T >::swap ( auto_vector< T > &  other)
inline

Definition at line 54 of file auto_vector.h.

References auto_vector< T >::_arr.

{
_arr.swap (other._arr);
}
template<class T>
T const* auto_vector< T >::operator[] ( size_t  i) const
inline

Definition at line 59 of file auto_vector.h.

References auto_vector< T >::_arr.

{ return _arr [i]; }
template<class T>
auto_lvalue auto_vector< T >::operator[] ( size_t  i)
inline

Definition at line 60 of file auto_vector.h.

References auto_vector< T >::_arr.

{
return auto_lvalue (_arr [i]);
}
template<class T >
void auto_vector< T >::assign ( size_t  i,
std::auto_ptr< T >  p 
)
inline

Definition at line 159 of file auto_vector.h.

{
assert (i < size ());
if (_arr [i] != p.get ())
delete _arr [i];
_arr [i] = p.release ();
}
template<class T >
void auto_vector< T >::assign_direct ( size_t  i,
T *  p 
)
inline

Definition at line 150 of file auto_vector.h.

{
assert (i < size ());
if (_arr [i] != p)
delete _arr [i];
_arr [i] = p;
}
template<class T >
void auto_vector< T >::insert ( size_t  idx,
std::auto_ptr< T >  p 
)

Definition at line 239 of file auto_vector.h.

{
assert (idx <= size ());
_arr.insert (ToIter (idx), p.get ());
p.release ();
}
template<class T >
void auto_vector< T >::push_back ( std::auto_ptr< T >  p)

Definition at line 117 of file auto_vector.h.

{
_arr.push_back (ptr.get ());
ptr.release ();
}
template<class T >
std::auto_ptr< T > auto_vector< T >::pop_back ( )
inline

Definition at line 124 of file auto_vector.h.

{
assert (size () != 0);
T * p = _arr.back ();
_arr.pop_back ();
return std::auto_ptr<T> (p);
}
template<class T>
T* auto_vector< T >::back ( )
inline

Definition at line 70 of file auto_vector.h.

References auto_vector< T >::_arr.

{ return _arr.back (); }
template<class T>
T const* auto_vector< T >::back ( ) const
inline

Definition at line 71 of file auto_vector.h.

References auto_vector< T >::_arr.

{ return _arr.back (); }
template<class T>
T* auto_vector< T >::front ( )
inline

Definition at line 72 of file auto_vector.h.

References auto_vector< T >::_arr.

{ return _arr.front (); }
template<class T>
T const* auto_vector< T >::front ( ) const
inline

Definition at line 73 of file auto_vector.h.

References auto_vector< T >::_arr.

{ return _arr.front (); }
template<class T>
iterator auto_vector< T >::begin ( )
inline

Definition at line 81 of file auto_vector.h.

References auto_vector< T >::_arr.

{ return _arr.begin (); }
template<class T>
iterator auto_vector< T >::end ( )
inline

Definition at line 82 of file auto_vector.h.

References auto_vector< T >::_arr.

{ return _arr.end (); }
template<class T>
const_iterator auto_vector< T >::begin ( ) const
inline

Definition at line 83 of file auto_vector.h.

References auto_vector< T >::_arr.

{ return _arr.begin (); }
template<class T>
const_iterator auto_vector< T >::end ( ) const
inline

Definition at line 84 of file auto_vector.h.

References auto_vector< T >::_arr.

{ return _arr.end (); }
template<class T>
reverse_iterator auto_vector< T >::rbegin ( )
inline

Definition at line 85 of file auto_vector.h.

References auto_vector< T >::_arr.

{ return _arr.rbegin (); }
template<class T>
reverse_iterator auto_vector< T >::rend ( )
inline

Definition at line 86 of file auto_vector.h.

References auto_vector< T >::_arr.

{ return _arr.rend (); }
template<class T>
const_reverse_iterator auto_vector< T >::rbegin ( ) const
inline

Definition at line 87 of file auto_vector.h.

References auto_vector< T >::_arr.

{ return _arr.rbegin (); }
template<class T>
const_reverse_iterator auto_vector< T >::rend ( ) const
inline

Definition at line 88 of file auto_vector.h.

References auto_vector< T >::_arr.

{ return _arr.rend (); }
template<class T>
iterator auto_vector< T >::erase ( iterator  it)
template<class T >
size_t auto_vector< T >::ToIndex ( iterator const &  it)

Definition at line 195 of file auto_vector.h.

{
assert (it - begin () >= 0);
return static_cast<size_t> (it - begin ());
}
template<class T >
size_t auto_vector< T >::ToIndex ( reverse_iterator const &  rit)

Definition at line 202 of file auto_vector.h.

{
iterator it = rit.base ();
--it;
assert (it - begin () >= 0);
return static_cast<size_t> (it - begin ());
}
template<class T >
auto_vector< T >::iterator auto_vector< T >::ToIter ( size_t  idx)

Definition at line 211 of file auto_vector.h.

{
return begin () + idx;
}
template<class T >
auto_vector< T >::reverse_iterator auto_vector< T >::ToRIter ( size_t  idx)

Definition at line 217 of file auto_vector.h.

{
++idx;
return reverse_iterator (ToIter (idx));
}
template<class T>
auto_vector<T>& auto_vector< T >::operator= ( auto_vector< T > const &  src)
private

Member Data Documentation

template<class T>
std::vector<T*> auto_vector< T >::_arr
private

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