aGrUM  0.16.0
gum::BijectionIterator< T1, T2 > Class Template Reference

Unsafe iterators for bijection. More...

#include <agrum/core/bijection.h>

Public Member Functions

template<typename Alloc , bool Gen>
INLINE BijectionIterator (const BijectionImplementation< T1, T2, Alloc, Gen > &bijection)
 Constructor. More...
 
template<typename Alloc >
INLINE BijectionIterator (const Bijection< T1, T2, Alloc > &bijection)
 Constructor. More...
 
Constructors/destructors
 BijectionIterator () noexcept
 Default constructor. More...
 
template<typename Alloc >
 BijectionIterator (const Bijection< T1, T2, Alloc > &bijection)
 Default constructor. More...
 
 BijectionIterator (const BijectionIterator< T1, T2 > &from)
 Copy constructor. More...
 
 BijectionIterator (BijectionIterator< T1, T2 > &&from) noexcept
 Move constructor. More...
 
 ~BijectionIterator () noexcept
 Class destructor. More...
 
Operators
BijectionIterator< T1, T2 > & operator= (const BijectionIterator< T1, T2 > &toCopy)
 Copy operator. More...
 
BijectionIterator< T1, T2 > & operator= (BijectionIterator< T1, T2 > &&toMove) noexcept
 Move operator. More...
 
BijectionIterator< T1, T2 > & operator++ () noexcept
 Go to the next association, if it exists. More...
 
BijectionIterator< T1, T2 > & operator+= (Size nb) noexcept
 Moves the iterator by nb elements. More...
 
BijectionIterator< T1, T2 > operator+ (Size nb) noexcept
 Return a new iterator. More...
 
bool operator!= (const BijectionIterator< T1, T2 > &toCompare) const noexcept
 Inequality operator. More...
 
bool operator== (const BijectionIterator< T1, T2 > &toCompare) const noexcept
 Equality operator. More...
 
Accessors/Modifiers
const T1 & first () const
 Returns the first element of the current association. More...
 
const T2 & second () const
 Returns the second element of the current association. More...
 

Public Types

using iterator_category = std::forward_iterator_tag
 types for STL compliance More...
 
using type1_type = T1
 types for STL compliance More...
 
using type1_reference = T1 &
 types for STL compliance More...
 
using type1_const_reference = const T1 &
 types for STL compliance More...
 
using type1_pointer = T1 *
 types for STL compliance More...
 
using type1_const_pointer = const T1 *
 types for STL compliance More...
 
using type2_type = T2
 types for STL compliance More...
 
using type2_reference = T2 &
 types for STL compliance More...
 
using type2_const_reference = const T2 &
 types for STL compliance More...
 
using type2_pointer = T2 *
 types for STL compliance More...
 
using type2_const_pointer = const T2 *
 types for STL compliance More...
 
using difference_type = std::ptrdiff_t
 types for STL compliance More...
 

Friends

template<typename TT1 , typename TT2 , typename Alloc , bool >
class BijectionImplementation
 

Detailed Description

template<typename T1, typename T2>
class gum::BijectionIterator< T1, T2 >

Unsafe iterators for bijection.

Template Parameters
T1The first type of elements in the gum::Bjection.
T2The second type of elements in the gum::Bjection.

Definition at line 1609 of file bijection.h.

Member Typedef Documentation

◆ difference_type

template<typename T1, typename T2>
using gum::BijectionIterator< T1, T2 >::difference_type = std::ptrdiff_t

types for STL compliance

Definition at line 1627 of file bijection.h.

◆ Getter

template<typename T1, typename T2>
using gum::BijectionIterator< T1, T2 >::Getter = BijectionIteratorGet< std::is_scalar< T1 >::value && std::is_scalar< T2 >::value >
private

Dummy classes that will enable discriminate without overhead between scalars and non-scalars functions second in iterators.

Definition at line 1636 of file bijection.h.

◆ HashIter

template<typename T1, typename T2>
using gum::BijectionIterator< T1, T2 >::HashIter = typename HashTable12::const_iterator
private

Definition at line 1779 of file bijection.h.

◆ HashTable12

template<typename T1, typename T2>
using gum::BijectionIterator< T1, T2 >::HashTable12 = typename std::conditional< std::is_scalar< T1 >::value && std::is_scalar< T2 >::value, HashTable< T1, T2, std::allocator< std::pair< T1, T2 > > >, HashTable< T1, T2*, std::allocator< std::pair< T1, T2* > > > >::type
private

Alias for one of the internal gum::HashTable of the gum::Bijection.

Definition at line 1778 of file bijection.h.

◆ iterator_category

template<typename T1, typename T2>
using gum::BijectionIterator< T1, T2 >::iterator_category = std::forward_iterator_tag

types for STL compliance

Definition at line 1616 of file bijection.h.

◆ type1_const_pointer

template<typename T1, typename T2>
using gum::BijectionIterator< T1, T2 >::type1_const_pointer = const T1*

types for STL compliance

Definition at line 1621 of file bijection.h.

◆ type1_const_reference

template<typename T1, typename T2>
using gum::BijectionIterator< T1, T2 >::type1_const_reference = const T1&

types for STL compliance

Definition at line 1619 of file bijection.h.

◆ type1_pointer

template<typename T1, typename T2>
using gum::BijectionIterator< T1, T2 >::type1_pointer = T1*

types for STL compliance

Definition at line 1620 of file bijection.h.

◆ type1_reference

template<typename T1, typename T2>
using gum::BijectionIterator< T1, T2 >::type1_reference = T1&

types for STL compliance

Definition at line 1618 of file bijection.h.

◆ type1_type

template<typename T1, typename T2>
using gum::BijectionIterator< T1, T2 >::type1_type = T1

types for STL compliance

Definition at line 1617 of file bijection.h.

◆ type2_const_pointer

template<typename T1, typename T2>
using gum::BijectionIterator< T1, T2 >::type2_const_pointer = const T2*

types for STL compliance

Definition at line 1626 of file bijection.h.

◆ type2_const_reference

template<typename T1, typename T2>
using gum::BijectionIterator< T1, T2 >::type2_const_reference = const T2&

types for STL compliance

Definition at line 1624 of file bijection.h.

◆ type2_pointer

template<typename T1, typename T2>
using gum::BijectionIterator< T1, T2 >::type2_pointer = T2*

types for STL compliance

Definition at line 1625 of file bijection.h.

◆ type2_reference

template<typename T1, typename T2>
using gum::BijectionIterator< T1, T2 >::type2_reference = T2&

types for STL compliance

Definition at line 1623 of file bijection.h.

◆ type2_type

template<typename T1, typename T2>
using gum::BijectionIterator< T1, T2 >::type2_type = T2

types for STL compliance

Definition at line 1622 of file bijection.h.

Constructor & Destructor Documentation

◆ BijectionIterator() [1/7]

template<typename T1, typename T2>
template<typename Alloc , bool Gen>
gum::BijectionIterator< T1, T2 >::BijectionIterator ( const BijectionImplementation< T1, T2, Alloc, Gen > &  bijection)
private

Begin constructor.

By default, the iterator points to the starting point of the bijection.

◆ BijectionIterator() [2/7]

template<typename T1 , typename T2 >
INLINE gum::BijectionIterator< T1, T2 >::BijectionIterator ( )
noexcept

Default constructor.

Definition at line 1041 of file bijection_tpl.h.

1041  {
1042  GUM_CONSTRUCTOR(BijectionIterator);
1043  }
BijectionIterator() noexcept
Default constructor.

◆ BijectionIterator() [3/7]

template<typename T1, typename T2>
template<typename Alloc >
gum::BijectionIterator< T1, T2 >::BijectionIterator ( const Bijection< T1, T2, Alloc > &  bijection)

Default constructor.

Parameters
bijectionThe gum::Bijection to iterate onto.

◆ BijectionIterator() [4/7]

template<typename T1, typename T2>
INLINE gum::BijectionIterator< T1, T2 >::BijectionIterator ( const BijectionIterator< T1, T2 > &  from)

Copy constructor.

Parameters
fromThe gum::BijectionIterator to copy.

Definition at line 1065 of file bijection_tpl.h.

1066  :
1067  __iter{toCopy.__iter} {
1068  GUM_CONS_CPY(BijectionIterator);
1069  }
BijectionIterator() noexcept
Default constructor.
HashIter __iter
The hashTable iterator that actually does all the job.
Definition: bijection.h:1782

◆ BijectionIterator() [5/7]

template<typename T1, typename T2>
INLINE gum::BijectionIterator< T1, T2 >::BijectionIterator ( BijectionIterator< T1, T2 > &&  from)
noexcept

Move constructor.

move constructor

Parameters
fromThe gum::BijectionIterator to move.

Definition at line 1073 of file bijection_tpl.h.

1074  :
1075  __iter{std::move(from.__iter)} {
1076  GUM_CONS_MOV(BijectionIterator);
1077  }
BijectionIterator() noexcept
Default constructor.
HashIter __iter
The hashTable iterator that actually does all the job.
Definition: bijection.h:1782

◆ ~BijectionIterator()

template<typename T1 , typename T2 >
INLINE gum::BijectionIterator< T1, T2 >::~BijectionIterator ( )
noexcept

Class destructor.

Destructor.

Definition at line 1081 of file bijection_tpl.h.

1081  {
1082  GUM_DESTRUCTOR(BijectionIterator);
1083  }
BijectionIterator() noexcept
Default constructor.

◆ BijectionIterator() [6/7]

template<typename T1, typename T2>
template<typename Alloc , bool Gen>
INLINE gum::BijectionIterator< T1, T2 >::BijectionIterator ( const BijectionImplementation< T1, T2, Alloc, Gen > &  bijection)

Constructor.

Definition at line 1048 of file bijection_tpl.h.

1049  :
1050  __iter{bijection.__firstToSecond.cbegin()} {
1051  GUM_CONSTRUCTOR(BijectionIterator);
1052  }
BijectionIterator() noexcept
Default constructor.
HashIter __iter
The hashTable iterator that actually does all the job.
Definition: bijection.h:1782

◆ BijectionIterator() [7/7]

template<typename T1, typename T2>
template<typename Alloc >
INLINE gum::BijectionIterator< T1, T2 >::BijectionIterator ( const Bijection< T1, T2, Alloc > &  bijection)

Constructor.

Definition at line 1057 of file bijection_tpl.h.

1058  :
1059  __iter{bijection.__firstToSecond.cbegin()} {
1060  GUM_CONSTRUCTOR(BijectionIterator);
1061  }
BijectionIterator() noexcept
Default constructor.
HashIter __iter
The hashTable iterator that actually does all the job.
Definition: bijection.h:1782

Member Function Documentation

◆ first()

template<typename T1 , typename T2 >
INLINE const T1 & gum::BijectionIterator< T1, T2 >::first ( ) const

Returns the first element of the current association.

return the first element of the current association

Returns
Returns the first element of the current association.
Exceptions
UndefinedIteratorValueRaised when the iterator does not point to a valid element of the bijection.

Definition at line 1140 of file bijection_tpl.h.

1140  {
1141  return __iter.key();
1142  }
HashIter __iter
The hashTable iterator that actually does all the job.
Definition: bijection.h:1782

◆ operator!=()

template<typename T1, typename T2>
INLINE bool gum::BijectionIterator< T1, T2 >::operator!= ( const BijectionIterator< T1, T2 > &  toCompare) const
noexcept

Inequality operator.

Comparison of iterators.

Parameters
toCompareThe gum::BijectionIteratorSafe to compare.
Returns
Returns true if they differ.

Definition at line 1127 of file bijection_tpl.h.

1127  {
1128  return __iter != toCompare.__iter;
1129  }
HashIter __iter
The hashTable iterator that actually does all the job.
Definition: bijection.h:1782

◆ operator+()

template<typename T1 , typename T2 >
INLINE BijectionIterator< T1, T2 > gum::BijectionIterator< T1, T2 >::operator+ ( Size  nb)
noexcept

Return a new iterator.

returns a new iterator

If the iterator points to gum::Bijection::end(), the resulting iterator also points to gum::Bijection::end(). If there are nb or fewer elements to parse to reach the end of the gum::Bijection, then the resulting iterator points to gum::Bijection::end().

Definition at line 1120 of file bijection_tpl.h.

1120  {
1121  return BijectionIterator< T1, T2 >{*this} += nb;
1122  }

◆ operator++()

template<typename T1 , typename T2 >
INLINE BijectionIterator< T1, T2 > & gum::BijectionIterator< T1, T2 >::operator++ ( )
noexcept

Go to the next association, if it exists.

Go to the next association (if exists)

If the iterator points to gum::Bijection::end(), nothing is done.

Returns
Return sthis gum::BijectionIterator.

Definition at line 1104 of file bijection_tpl.h.

1104  {
1105  ++__iter;
1106  return *this;
1107  }
HashIter __iter
The hashTable iterator that actually does all the job.
Definition: bijection.h:1782

◆ operator+=()

template<typename T1 , typename T2 >
INLINE BijectionIterator< T1, T2 > & gum::BijectionIterator< T1, T2 >::operator+= ( Size  nb)
noexcept

Moves the iterator by nb elements.

moves the iterator by nb elements

If the iterator points to gum::Bijection::end(), nothing is done. If there are nb or fewer elements to parse to reach the end of the bijection, then this method makes the iterator point to gum::Bijection::end().

Parameters
nbThe number of steps by wich the iterator moves.
Returns
Returns this gum::BijectionIterator.

Definition at line 1112 of file bijection_tpl.h.

1112  {
1113  __iter += nb;
1114  return *this;
1115  }
HashIter __iter
The hashTable iterator that actually does all the job.
Definition: bijection.h:1782

◆ operator=() [1/2]

template<typename T1, typename T2>
INLINE BijectionIterator< T1, T2 > & gum::BijectionIterator< T1, T2 >::operator= ( const BijectionIterator< T1, T2 > &  toCopy)

Copy operator.

Parameters
toCopyThe gum::BijectionIterator to copy.
Returns
Returns this gum::BijectionIterator.

Definition at line 1088 of file bijection_tpl.h.

1088  {
1089  __iter = toCopy.__iter;
1090  return *this;
1091  }
HashIter __iter
The hashTable iterator that actually does all the job.
Definition: bijection.h:1782

◆ operator=() [2/2]

template<typename T1, typename T2>
INLINE BijectionIterator< T1, T2 > & gum::BijectionIterator< T1, T2 >::operator= ( BijectionIterator< T1, T2 > &&  toMove)
noexcept

Move operator.

move operator

Parameters
toMoveThe gum::BijectionIterator to move.
Returns
Returns this gum::BijectionIterator.

Definition at line 1096 of file bijection_tpl.h.

1096  {
1097  __iter = std::move(toCopy.__iter);
1098  return *this;
1099  }
HashIter __iter
The hashTable iterator that actually does all the job.
Definition: bijection.h:1782

◆ operator==()

template<typename T1, typename T2>
INLINE bool gum::BijectionIterator< T1, T2 >::operator== ( const BijectionIterator< T1, T2 > &  toCompare) const
noexcept

Equality operator.

Comparison of iterators.

Parameters
toCompareThe gum::BijectionIteratorSafe to compare.
Returns
Returns true if they are equal.

Definition at line 1134 of file bijection_tpl.h.

1134  {
1135  return __iter == toCompare.__iter;
1136  }
HashIter __iter
The hashTable iterator that actually does all the job.
Definition: bijection.h:1782

◆ second()

template<typename T1 , typename T2 >
INLINE const T2 & gum::BijectionIterator< T1, T2 >::second ( ) const

Returns the second element of the current association.

return the second element of the current association

Returns
Returns the second element of the current association.
Exceptions
UndefinedIteratorValueRaised when the iterator does not point to a valid element of the bijection.

Definition at line 1146 of file bijection_tpl.h.

1146  {
1147  return Getter::op_second(__iter.val());
1148  }
static INLINE const T & op_second(const T *x)
Returns a refeence over a pointer.
Definition: bijection.h:1370
HashIter __iter
The hashTable iterator that actually does all the job.
Definition: bijection.h:1782

Friends And Related Function Documentation

◆ BijectionImplementation

template<typename T1, typename T2>
template<typename TT1 , typename TT2 , typename Alloc , bool >
friend class BijectionImplementation
friend

Definition at line 1611 of file bijection.h.

Member Data Documentation

◆ __iter

template<typename T1, typename T2>
HashIter gum::BijectionIterator< T1, T2 >::__iter
private

The hashTable iterator that actually does all the job.

Definition at line 1782 of file bijection.h.

Referenced by gum::BijectionIterator< int, int >::BijectionIterator(), and gum::BijectionIterator< int, int >::operator=().


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