OpenTTD Source 20241224-master-gee860a5c8e
MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare > Class Template Reference

STL-style iterator for MultiMap. More...

#include <multimap.hpp>

Public Member Functions

 MultiMapIterator ()
 Simple, dangerous constructor to allow later assignment with operator=.
 
template<class Tnon_const >
 MultiMapIterator (Tnon_const mi)
 Constructor to allow possibly const iterators to be assigned from possibly non-const map iterators.
 
 MultiMapIterator (Tmap_iter mi, Tlist_iter li)
 Constructor to allow specifying an exact position in map and list.
 
template<class Tnon_const >
Selfoperator= (Tnon_const mi)
 Assignment iterator like constructor with the same signature.
 
Tvalue & operator* () const
 Dereference operator.
 
Tvalue * operator-> () const
 Same as operator*(), but returns a pointer.
 
const Tmap_iter & GetMapIter () const
 
const Tlist_iter & GetListIter () const
 
bool ListValid () const
 
const Tkey & GetKey () const
 
Selfoperator++ ()
 Prefix increment operator.
 
Self operator++ (int)
 Postfix increment operator.
 
Selfoperator-- ()
 Prefix decrement operator.
 
Self operator-- (int)
 Postfix decrement operator.
 

Protected Types

typedef MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare > Self
 

Protected Attributes

Tlist_iter list_iter
 Iterator pointing to current position in the current list of items with equal keys.
 
Tmap_iter map_iter
 Iterator pointing to the position of the current list of items with equal keys in the map.
 
bool list_valid
 Flag to show that the iterator has just "walked" a step in the map.
 

Friends

class MultiMap< Tkey, Tvalue, Tcompare >
 

Detailed Description

template<class Tmap_iter, class Tlist_iter, class Tkey, class Tvalue, class Tcompare>
class MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare >

STL-style iterator for MultiMap.

Template Parameters
Tmap_iterIterator type for the map in the MultiMap.
Tlist_iterIterator type for the lists in the MultiMap.
TkeyKey type of the MultiMap.
TvalueValue type of the MultMap.
TcompareComparator type for keys of the MultiMap.

Definition at line 25 of file multimap.hpp.

Member Typedef Documentation

◆ Self

template<class Tmap_iter , class Tlist_iter , class Tkey , class Tvalue , class Tcompare >
typedef MultiMapIterator<Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare> MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare >::Self
protected

Definition at line 28 of file multimap.hpp.

Constructor & Destructor Documentation

◆ MultiMapIterator() [1/3]

template<class Tmap_iter , class Tlist_iter , class Tkey , class Tvalue , class Tcompare >
MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare >::MultiMapIterator ( )
inline

Simple, dangerous constructor to allow later assignment with operator=.

Definition at line 48 of file multimap.hpp.

◆ MultiMapIterator() [2/3]

template<class Tmap_iter , class Tlist_iter , class Tkey , class Tvalue , class Tcompare >
template<class Tnon_const >
MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare >::MultiMapIterator ( Tnon_const  mi)
inline

Constructor to allow possibly const iterators to be assigned from possibly non-const map iterators.

You can assign end() like this.

Template Parameters
Tnon_constIterator type assignable to Tmap_iter (which might be const).
Parameters
miOne such iterator.

Definition at line 57 of file multimap.hpp.

◆ MultiMapIterator() [3/3]

template<class Tmap_iter , class Tlist_iter , class Tkey , class Tvalue , class Tcompare >
MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare >::MultiMapIterator ( Tmap_iter  mi,
Tlist_iter  li 
)
inline

Constructor to allow specifying an exact position in map and list.

You cannot construct end() like this as the constructor will actually check li and mi->second for list_valid.

Parameters
miIterator in the map.
liIterator in the list.

Definition at line 66 of file multimap.hpp.

Member Function Documentation

◆ GetKey()

template<class Tmap_iter , class Tlist_iter , class Tkey , class Tvalue , class Tcompare >
const Tkey & MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare >::GetKey ( ) const
inline

Definition at line 114 of file multimap.hpp.

◆ GetListIter()

template<class Tmap_iter , class Tlist_iter , class Tkey , class Tvalue , class Tcompare >
const Tlist_iter & MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare >::GetListIter ( ) const
inline

Definition at line 111 of file multimap.hpp.

◆ GetMapIter()

template<class Tmap_iter , class Tlist_iter , class Tkey , class Tvalue , class Tcompare >
const Tmap_iter & MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare >::GetMapIter ( ) const
inline

Definition at line 110 of file multimap.hpp.

◆ ListValid()

template<class Tmap_iter , class Tlist_iter , class Tkey , class Tvalue , class Tcompare >
bool MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare >::ListValid ( ) const
inline

Definition at line 112 of file multimap.hpp.

◆ operator*()

template<class Tmap_iter , class Tlist_iter , class Tkey , class Tvalue , class Tcompare >
Tvalue & MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare >::operator* ( ) const
inline

Dereference operator.

Works just like usual STL operator*() on various containers. Doesn't do a lot of checks for sanity, just like STL.

Returns
The value associated with the item this iterator points to.

Definition at line 90 of file multimap.hpp.

◆ operator++() [1/2]

template<class Tmap_iter , class Tlist_iter , class Tkey , class Tvalue , class Tcompare >
Self & MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare >::operator++ ( )
inline

Prefix increment operator.

Increment the iterator and set it to the next item in the MultiMap. This either increments the list iterator or the map iterator and sets list_valid accordingly.

Returns
This iterator after incrementing.

Definition at line 122 of file multimap.hpp.

References MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare >::map_iter.

Referenced by MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare >::operator++().

◆ operator++() [2/2]

template<class Tmap_iter , class Tlist_iter , class Tkey , class Tvalue , class Tcompare >
Self MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare >::operator++ ( int  )
inline

Postfix increment operator.

Same as prefix increment, but return the previous state.

Parameters
dummyparam to mark postfix.
Returns
This iterator before incrementing.

Definition at line 147 of file multimap.hpp.

References MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare >::operator++().

◆ operator--() [1/2]

template<class Tmap_iter , class Tlist_iter , class Tkey , class Tvalue , class Tcompare >
Self & MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare >::operator-- ( )
inline

Prefix decrement operator.

Decrement the iterator and set it to the previous item in the MultiMap.

Returns
This iterator after decrementing.

Definition at line 159 of file multimap.hpp.

References MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare >::map_iter.

Referenced by MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare >::operator--().

◆ operator--() [2/2]

template<class Tmap_iter , class Tlist_iter , class Tkey , class Tvalue , class Tcompare >
Self MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare >::operator-- ( int  )
inline

Postfix decrement operator.

Same as prefix decrement, but return the previous state.

Parameters
dummyparam to mark postfix.
Returns
This iterator before decrementing.

Definition at line 178 of file multimap.hpp.

References MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare >::operator--().

◆ operator->()

template<class Tmap_iter , class Tlist_iter , class Tkey , class Tvalue , class Tcompare >
Tvalue * MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare >::operator-> ( ) const
inline

Same as operator*(), but returns a pointer.

Returns
Pointer to the value this iterator points to.

Definition at line 102 of file multimap.hpp.

◆ operator=()

template<class Tmap_iter , class Tlist_iter , class Tkey , class Tvalue , class Tcompare >
template<class Tnon_const >
Self & MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare >::operator= ( Tnon_const  mi)
inline

Assignment iterator like constructor with the same signature.

Template Parameters
Tnon_constIterator type assignable to Tmap_iter (which might be const).
Parameters
miOne such iterator.
Returns
This iterator.

Definition at line 78 of file multimap.hpp.

Friends And Related Symbol Documentation

◆ MultiMap< Tkey, Tvalue, Tcompare >

template<class Tmap_iter , class Tlist_iter , class Tkey , class Tvalue , class Tcompare >
friend class MultiMap< Tkey, Tvalue, Tcompare >
friend

Definition at line 267 of file multimap.hpp.

Field Documentation

◆ list_iter

template<class Tmap_iter , class Tlist_iter , class Tkey , class Tvalue , class Tcompare >
Tlist_iter MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare >::list_iter
protected

Iterator pointing to current position in the current list of items with equal keys.

Definition at line 30 of file multimap.hpp.

Referenced by MultiMap< Tkey, Tvalue, Tcompare >::erase().

◆ list_valid

template<class Tmap_iter , class Tlist_iter , class Tkey , class Tvalue , class Tcompare >
bool MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare >::list_valid
protected

Flag to show that the iterator has just "walked" a step in the map.

We cannot check the current list for that as we might have reached end() of the map. In that case we'd need to set list_iter to some sort of "invalid" state, but that's impossible as operator== yields undefined behaviour if the iterators don't belong to the same list and there is no list at end(). So if we created a static empty list and an "invalid" iterator in that we could not determine if the iterator is invalid while it's valid. We can also not determine if the map iterator is valid while we don't have the map; so in the end it's easiest to just introduce an extra flag.

Definition at line 42 of file multimap.hpp.

Referenced by MultiMap< Tkey, Tvalue, Tcompare >::erase().

◆ map_iter

template<class Tmap_iter , class Tlist_iter , class Tkey , class Tvalue , class Tcompare >
Tmap_iter MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare >::map_iter
protected

Iterator pointing to the position of the current list of items with equal keys in the map.

Definition at line 31 of file multimap.hpp.

Referenced by MultiMap< Tkey, Tvalue, Tcompare >::erase(), MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare >::operator++(), and MultiMapIterator< Tmap_iter, Tlist_iter, Tkey, Tvalue, Tcompare >::operator--().


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