ITK  6.0.0
Insight Toolkit
Public Types | Public Member Functions | Private Attributes | Friends | List of all members
itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator Class Reference

#include <itkVectorContainer.h>

Detailed Description

template<typename TElementIdentifier, typename TElement>
class itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator

Simulate STL-map style iteration where dereferencing the iterator gives access to both the index and the value.

Definition at line 154 of file itkVectorContainer.h.

+ Collaboration diagram for itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator:

Public Types

using difference_type = typename VectorIterator::difference_type
 
using iterator_category = typename VectorIterator::iterator_category
 
using pointer = typename VectorIterator::pointer
 
using reference = typename VectorIterator::reference
 
using value_type = typename VectorIterator::value_type
 

Public Member Functions

ElementIdentifier Index () const
 
 Iterator ()=default
 
 Iterator (size_type d, const VectorIterator &i)
 
 ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION (ConstIterator)
 
 ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION (Iterator)
 
Iteratoroperator* ()
 
Iteratoroperator++ ()
 
Iterator operator++ (int)
 
Iteratoroperator+= (difference_type n)
 
difference_type operator- (const Iterator &r) const
 
Iteratoroperator-- ()
 
Iterator operator-- (int)
 
Iteratoroperator-> ()
 
bool operator< (const Iterator &r) const
 
bool operator<= (const Iterator &r) const
 
bool operator== (const ConstIterator &r) const
 
bool operator== (const Iterator &r) const
 
bool operator> (const Iterator &r) const
 
bool operator>= (const Iterator &r) const
 
reference Value () const
 

Private Attributes

VectorIterator m_Iter {}
 
size_type m_Pos {}
 

Friends

class ConstIterator
 

Member Typedef Documentation

◆ difference_type

template<typename TElementIdentifier , typename TElement >
using itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator::difference_type = typename VectorIterator::difference_type

Definition at line 159 of file itkVectorContainer.h.

◆ iterator_category

template<typename TElementIdentifier , typename TElement >
using itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator::iterator_category = typename VectorIterator::iterator_category

Definition at line 157 of file itkVectorContainer.h.

◆ pointer

template<typename TElementIdentifier , typename TElement >
using itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator::pointer = typename VectorIterator::pointer

Definition at line 160 of file itkVectorContainer.h.

◆ reference

template<typename TElementIdentifier , typename TElement >
using itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator::reference = typename VectorIterator::reference

Definition at line 161 of file itkVectorContainer.h.

◆ value_type

template<typename TElementIdentifier , typename TElement >
using itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator::value_type = typename VectorIterator::value_type

Definition at line 158 of file itkVectorContainer.h.

Constructor & Destructor Documentation

◆ Iterator() [1/2]

template<typename TElementIdentifier , typename TElement >
itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator::Iterator ( )
default

◆ Iterator() [2/2]

template<typename TElementIdentifier , typename TElement >
itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator::Iterator ( size_type  d,
const VectorIterator i 
)
inline

Definition at line 164 of file itkVectorContainer.h.

Member Function Documentation

◆ Index()

template<typename TElementIdentifier , typename TElement >
ElementIdentifier itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator::Index ( ) const
inline

Get the index into the VectorContainer associated with this iterator.

Definition at line 255 of file itkVectorContainer.h.

◆ ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION() [1/2]

template<typename TElementIdentifier , typename TElement >
itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator::ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION ( ConstIterator  )

◆ ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION() [2/2]

template<typename TElementIdentifier , typename TElement >
itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator::ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION ( Iterator  )

◆ operator*()

template<typename TElementIdentifier , typename TElement >
Iterator& itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator::operator* ( )
inline

Definition at line 168 of file itkVectorContainer.h.

◆ operator++() [1/2]

template<typename TElementIdentifier , typename TElement >
Iterator& itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator::operator++ ( )
inline

Definition at line 171 of file itkVectorContainer.h.

◆ operator++() [2/2]

template<typename TElementIdentifier , typename TElement >
Iterator itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator::operator++ ( int  )
inline

Definition at line 178 of file itkVectorContainer.h.

◆ operator+=()

template<typename TElementIdentifier , typename TElement >
Iterator& itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator::operator+= ( difference_type  n)
inline

Definition at line 245 of file itkVectorContainer.h.

◆ operator-()

template<typename TElementIdentifier , typename TElement >
difference_type itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator::operator- ( const Iterator r) const
inline

◆ operator--() [1/2]

template<typename TElementIdentifier , typename TElement >
Iterator& itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator::operator-- ( )
inline

Definition at line 186 of file itkVectorContainer.h.

◆ operator--() [2/2]

template<typename TElementIdentifier , typename TElement >
Iterator itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator::operator-- ( int  )
inline

Definition at line 193 of file itkVectorContainer.h.

◆ operator->()

template<typename TElementIdentifier , typename TElement >
Iterator* itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator::operator-> ( )
inline

Definition at line 169 of file itkVectorContainer.h.

◆ operator<()

template<typename TElementIdentifier , typename TElement >
bool itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator::operator< ( const Iterator r) const
inline

Definition at line 224 of file itkVectorContainer.h.

◆ operator<=()

template<typename TElementIdentifier , typename TElement >
bool itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator::operator<= ( const Iterator r) const
inline

Definition at line 239 of file itkVectorContainer.h.

◆ operator==() [1/2]

template<typename TElementIdentifier , typename TElement >
bool itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator::operator== ( const ConstIterator r) const
inline

◆ operator==() [2/2]

template<typename TElementIdentifier , typename TElement >
bool itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator::operator== ( const Iterator r) const
inline

◆ operator>()

template<typename TElementIdentifier , typename TElement >
bool itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator::operator> ( const Iterator r) const
inline

Definition at line 229 of file itkVectorContainer.h.

◆ operator>=()

template<typename TElementIdentifier , typename TElement >
bool itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator::operator>= ( const Iterator r) const
inline

Definition at line 234 of file itkVectorContainer.h.

◆ Value()

template<typename TElementIdentifier , typename TElement >
reference itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator::Value ( ) const
inline

Get the value at this iterator's location in the VectorContainer.

Definition at line 262 of file itkVectorContainer.h.

Friends And Related Function Documentation

◆ ConstIterator

template<typename TElementIdentifier , typename TElement >
friend class ConstIterator
friend

Definition at line 270 of file itkVectorContainer.h.

Member Data Documentation

◆ m_Iter

template<typename TElementIdentifier , typename TElement >
VectorIterator itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator::m_Iter {}
private

◆ m_Pos

template<typename TElementIdentifier , typename TElement >
size_type itk::detail::VectorContainer< TElementIdentifier, TElement >::Iterator::m_Pos {}
private

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