HashTable< T, Key, Hash >::Iterator< Const > Class Template Reference

Internally used base for iterator and const_iterator. More...

Inheritance diagram for HashTable< T, Key, Hash >::Iterator< Const >:

Public Types

using iterator_category = std::forward_iterator_tag
 
using difference_type = this_type::difference_type
 
using table_type = typename std::conditional< Const, const this_type, this_type >::type
 The HashTable container type. More...
 
using node_type = typename std::conditional< Const, const this_type::node_type, this_type::node_type >::type
 The node-type being addressed. More...
 
using key_type = this_type::key_type
 The key type. More...
 
using mapped_type = typename std::conditional< Const, const this_type::mapped_type, this_type::mapped_type >::type
 The object type being addressed. More...
 

Public Member Functions

bool good () const noexcept
 True if iterator points to an entry. More...
 
bool found () const noexcept
 True if iterator points to an entry - same as good() More...
 
const Key & key () const
 The key associated with the iterator. More...
 
Ostreamprint (Ostream &os) const
 Write the (key, val) pair. More...
 
 operator bool () const noexcept
 True if iterator points to an entry. More...
 
template<bool Any>
bool operator== (const Iterator< Any > &iter) const noexcept
 Compare hash-entry element pointers. More...
 
template<bool Any>
bool operator!= (const Iterator< Any > &iter) const noexcept
 

Protected Member Functions

constexpr Iterator () noexcept
 Default construct. Also the same as the end iterator. More...
 
 Iterator (table_type *tbl)
 Construct from begin of hash-table. More...
 
 Iterator (table_type *tbl, const Key &key)
 Construct by finding key in hash table. More...
 
void increment ()
 Increment to the next position. More...
 
template<bool Any>
 operator const Iterator< Any > & () const
 Permit explicit cast to the other (const/non-const) iterator. More...
 

Protected Attributes

node_typeentry_
 The selected entry. More...
 
table_typecontainer_
 The hash-table container being iterated on. More...
 
label index_
 Index within the hash-table data. More...
 

Friends

class HashTable
 

Detailed Description

template<class T, class Key = word, class Hash = Foam::Hash<Key>>
template<bool Const>
class Foam::HashTable< T, Key, Hash >::Iterator< Const >

Internally used base for iterator and const_iterator.

The iterator base for HashTable (internal use only).

Note: data and functions are protected, to allow reuse by iterator and prevent most external usage. iterator and const_iterator have the same size, allowing us to reinterpret_cast between them (if desired)

Definition at line 833 of file HashTable.H.

Member Typedef Documentation

◆ iterator_category

using iterator_category = std::forward_iterator_tag

Definition at line 860 of file HashTable.H.

◆ difference_type

Definition at line 861 of file HashTable.H.

◆ table_type

using table_type = typename std::conditional < Const, const this_type, this_type >::type

The HashTable container type.

Definition at line 871 of file HashTable.H.

◆ node_type

using node_type = typename std::conditional < Const, const this_type::node_type, this_type::node_type >::type

The node-type being addressed.

Definition at line 881 of file HashTable.H.

◆ key_type

The key type.

Definition at line 886 of file HashTable.H.

◆ mapped_type

using mapped_type = typename std::conditional < Const, const this_type::mapped_type, this_type::mapped_type >::type

The object type being addressed.

Definition at line 896 of file HashTable.H.

Constructor & Destructor Documentation

◆ Iterator() [1/3]

constexpr Iterator ( )
inlineprotectednoexcept

Default construct. Also the same as the end iterator.

Definition at line 26 of file HashTableIterI.H.

◆ Iterator() [2/3]

Iterator ( table_type tbl)
inlineexplicitprotected

Construct from begin of hash-table.

Definition at line 37 of file HashTableIterI.H.

◆ Iterator() [3/3]

Iterator ( table_type tbl,
const Key &  key 
)
protected

Construct by finding key in hash table.

Definition at line 26 of file HashTableIter.C.

Member Function Documentation

◆ increment()

void increment ( )
inlineprotected

Increment to the next position.

Definition at line 72 of file HashTableIterI.H.

◆ operator const Iterator< Any > &()

operator const Iterator< Any > & ( ) const
inlineexplicitprotected

Permit explicit cast to the other (const/non-const) iterator.

Definition at line 959 of file HashTable.H.

◆ good()

bool good ( ) const
inlinenoexcept

True if iterator points to an entry.

This can be used directly instead of comparing to end()

Definition at line 974 of file HashTable.H.

◆ found()

bool found ( ) const
inlinenoexcept

True if iterator points to an entry - same as good()

Definition at line 979 of file HashTable.H.

◆ key()

const Key& key ( ) const
inline

The key associated with the iterator.

Definition at line 984 of file HashTable.H.

◆ print()

Foam::Ostream & print ( Ostream os) const
inline

Write the (key, val) pair.

Definition at line 109 of file HashTableIterI.H.

◆ operator bool()

operator bool ( ) const
inlineexplicitnoexcept

True if iterator points to an entry.

This can be used directly instead of comparing to end()

Definition at line 999 of file HashTable.H.

◆ operator==()

bool operator== ( const Iterator< Any > &  iter) const
inlinenoexcept

Compare hash-entry element pointers.

Independent of const/non-const access

Definition at line 1007 of file HashTable.H.

◆ operator!=()

bool operator!= ( const Iterator< Any > &  iter) const
inlinenoexcept

Definition at line 1013 of file HashTable.H.

Friends And Related Function Documentation

◆ HashTable

friend class HashTable
friend

Definition at line 927 of file HashTable.H.

Member Data Documentation

◆ entry_

◆ container_

table_type* container_
protected

The hash-table container being iterated on.

Uses pointer for default copy/assignment

Definition at line 916 of file HashTable.H.

◆ index_

label index_
protected

Index within the hash-table data.

A signed value, since iterator_erase() needs a negative value to mark the position.

Definition at line 924 of file HashTable.H.


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