ProteoWizard
Public Types | Public Member Functions
pwiz::util::CharIndexedVector< T > Struct Template Reference

a wrapper for boost::array that is indexable by character; supports indexes 0-127 More...

#include <CharIndexedVector.hpp>

List of all members.

Public Types

typedef boost::array< T, 129 > type
typedef
CharIndexedVectorIterator< T > 
iterator
typedef
CharIndexedVectorConstIterator
< T > 
const_iterator
typedef std::reverse_iterator
< iterator
reverse_iterator
typedef std::reverse_iterator
< const_iterator
const_reverse_iterator

Public Member Functions

 CharIndexedVector ()
size_t size () const
void erase (const char c)
void clear ()
char getIndexAsChar (iterator itr) const
char getIndexAsChar (size_t i) const
const T & operator[] (const char c) const
T & operator[] (const char c)
const_iterator begin () const
const_iterator end () const
iterator begin ()
iterator end ()

Detailed Description

template<class T>
struct pwiz::util::CharIndexedVector< T >

a wrapper for boost::array that is indexable by character; supports indexes 0-127

Definition at line 191 of file CharIndexedVector.hpp.


Member Typedef Documentation

template<class T >
typedef boost::array<T, 129> pwiz::util::CharIndexedVector< T >::type

Definition at line 193 of file CharIndexedVector.hpp.

Definition at line 194 of file CharIndexedVector.hpp.

Definition at line 195 of file CharIndexedVector.hpp.

template<class T >
typedef std::reverse_iterator<iterator> pwiz::util::CharIndexedVector< T >::reverse_iterator

Definition at line 196 of file CharIndexedVector.hpp.

template<class T >
typedef std::reverse_iterator<const_iterator> pwiz::util::CharIndexedVector< T >::const_reverse_iterator

Definition at line 197 of file CharIndexedVector.hpp.


Constructor & Destructor Documentation

template<class T >
pwiz::util::CharIndexedVector< T >::CharIndexedVector ( )
inline

Definition at line 199 of file CharIndexedVector.hpp.

References pwiz::util::CharIndexedVector< T >::clear().

{
clear();
}

Member Function Documentation

template<class T >
size_t pwiz::util::CharIndexedVector< T >::size ( ) const
inline

Definition at line 204 of file CharIndexedVector.hpp.

{
return 128;
}
template<class T >
void pwiz::util::CharIndexedVector< T >::erase ( const char  c)
inline

Definition at line 209 of file CharIndexedVector.hpp.

References pwiz::util::CharIndexedVector< T >::operator[]().

{
this->operator[](c) = T();
}
template<class T >
void pwiz::util::CharIndexedVector< T >::clear ( )
inline

Definition at line 214 of file CharIndexedVector.hpp.

Referenced by pwiz::util::CharIndexedVector< T >::CharIndexedVector().

{
std::fill(type::begin(), type::end(), T());
}
template<class T >
char pwiz::util::CharIndexedVector< T >::getIndexAsChar ( iterator  itr) const
inline

Definition at line 219 of file CharIndexedVector.hpp.

References pwiz::util::CharIndexedVector< T >::begin().

{
return 'A' + (itr - type::begin());
}
template<class T >
char pwiz::util::CharIndexedVector< T >::getIndexAsChar ( size_t  i) const
inline
template<class T >
const T& pwiz::util::CharIndexedVector< T >::operator[] ( const char  c) const
inline
template<class T >
T& pwiz::util::CharIndexedVector< T >::operator[] ( const char  c)
inline

Definition at line 234 of file CharIndexedVector.hpp.

References pwiz::util::CharIndexedVector< T >::operator[]().

{
return type::operator[]((size_t) c);
}
template<class T >
const_iterator pwiz::util::CharIndexedVector< T >::begin ( ) const
inline
template<class T >
const_iterator pwiz::util::CharIndexedVector< T >::end ( ) const
inline

Definition at line 240 of file CharIndexedVector.hpp.

Referenced by pwiz::util::CharIndexedVector< T >::end().

{return type::end();}
template<class T >
iterator pwiz::util::CharIndexedVector< T >::begin ( )
inline

Definition at line 241 of file CharIndexedVector.hpp.

References pwiz::util::CharIndexedVector< T >::begin().

{return type::begin();}
template<class T >
iterator pwiz::util::CharIndexedVector< T >::end ( )
inline

Definition at line 242 of file CharIndexedVector.hpp.

References pwiz::util::CharIndexedVector< T >::end().

{return type::end();}

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