PtrDictionary< T > Class Template Reference

Template dictionary class which manages the storage associated with it. More...

Inheritance diagram for PtrDictionary< T >:
Collaboration diagram for PtrDictionary< T >:

Public Member Functions

 PtrDictionary (const label size=128)
 Construct given initial table size. More...
 
 PtrDictionary (const PtrDictionary &)
 Copy constructor. More...
 
 PtrDictionary (PtrDictionary &&)
 Move constructor. More...
 
template<class INew >
 PtrDictionary (Istream &, const INew &)
 Construct from Istream using given Istream constructor class. More...
 
 PtrDictionary (Istream &)
 Construct from Istream. More...
 
const Toperator[] (const word &key) const
 Find and return entry. More...
 
Toperator[] (const word &key)
 Find and return entry. More...
 
- Public Member Functions inherited from DictionaryBase< DLPtrList< T >, T >
 DictionaryBase (const label size=128)
 Construct given initial table size. More...
 
 DictionaryBase (const DictionaryBase &)
 Copy constructor. More...
 
 DictionaryBase (DictionaryBase &&)
 Move constructor. More...
 
 DictionaryBase (Istream &, const INew &)
 Construct from Istream using given Istream constructor class. More...
 
 DictionaryBase (Istream &)
 Construct from Istream using default Istream constructor class. More...
 
bool found (const word &) const
 Search DictionaryBase for given keyword. More...
 
const T * lookupPtr (const word &) const
 Find and return an entry if present, otherwise return nullptr. More...
 
T * lookupPtr (const word &)
 Find and return an entry if present, otherwise return nullptr. More...
 
const T * lookup (const word &) const
 Find and return entry. More...
 
T * lookup (const word &)
 Find and return entry. More...
 
wordList toc () const
 Return the table of contents. More...
 
wordList sortedToc () const
 Return the table of contents as a sorted list. More...
 
void insert (const word &, T *)
 Add at head of dictionary. More...
 
void append (const word &, T *)
 Add at tail of dictionary. More...
 
T * remove (const word &)
 Remove and return entry specified by keyword. More...
 
void clear ()
 Clear the dictionary. More...
 
void transfer (DictionaryBase< DLPtrList< T >, T > &)
 Transfer the contents of the argument into this DictionaryBase. More...
 
void operator= (const DictionaryBase &)
 
const T * operator[] (const word &key) const
 Find and return entry. More...
 
T * operator[] (const word &key)
 Find and return entry. More...
 
- Public Member Functions inherited from LPtrList< LListBase, T >
 LPtrList ()
 Null construct. More...
 
 LPtrList (T *a)
 Construct given initial T. More...
 
template<class INew >
 LPtrList (Istream &, const INew &)
 Construct from Istream using given Istream constructor class. More...
 
 LPtrList (Istream &)
 Construct from Istream using default Istream constructor class. More...
 
 LPtrList (const LPtrList &)
 Copy constructor. More...
 
 LPtrList (LPtrList &&)
 Move constructor. More...
 
 ~LPtrList ()
 Destructor. More...
 
bool eraseHead ()
 Remove the head element from the list and delete the pointer. More...
 
void clear ()
 Clear the contents of the list. More...
 
void transfer (LPtrList< LListBase, T > &)
 Transfer the contents of the argument into this List. More...
 
void operator= (const LPtrList< LListBase, T > &)
 Assignment operator. More...
 
void operator= (LPtrList< LListBase, T > &&)
 Move assignment operator. More...
 
- Public Member Functions inherited from ULPtrList< LListBase, T >
 ULPtrList ()
 Null construct. More...
 
 ULPtrList (T *a)
 Construct given initial T. More...
 
 ULPtrList (const ULPtrList &)
 Copy constructor. More...
 
 ULPtrList (ULPtrList &&)
 Move constructor. More...
 
Tfirst ()
 Return the first entry added. More...
 
const Tfirst () const
 Return const access to the first entry added. More...
 
Tlast ()
 Return the last entry added. More...
 
const Tlast () const
 Return const access to the last entry added. More...
 
void operator= (const ULPtrList< LListBase, T > &)
 Assignment operator. More...
 
void operator= (ULPtrList< LListBase, T > &&)
 Move assignment operator. More...
 
- Public Member Functions inherited from LList< LListBase, T * >
 LList ()
 Null construct. More...
 
 LList (T * a)
 Construct given initial T. More...
 
 LList (Istream &)
 Construct from Istream. More...
 
 LList (const LList< LListBase, T * > &)
 Copy constructor. More...
 
 LList (LList< LListBase, T * > &&)
 Move constructor. More...
 
 LList (std::initializer_list< T * >)
 Construct from an initialiser list. More...
 
 ~LList ()
 Destructor. More...
 
T * & first ()
 Return the first entry added. More...
 
const T * & first () const
 Return const access to the first entry added. More...
 
T * & last ()
 Return the last entry added. More...
 
const T * & last () const
 Return const access to the last entry added. More...
 
void insert (const T * &a)
 Add at head of list. More...
 
void append (const T * &a)
 Add at tail of list. More...
 
T * removeHead ()
 Remove and return head. More...
 
T * remove (link *l)
 Remove and return element. More...
 
T * remove (iterator &it)
 Remove and return element specified by iterator. More...
 
void clear ()
 Delete contents of list. More...
 
void transfer (LList< LListBase, T * > &)
 Transfer the contents of the argument into this List. More...
 
void operator= (const LList< LListBase, T * > &)
 Assignment operator. More...
 
void operator= (LList< LListBase, T * > &&)
 Move assignment operator. More...
 
void operator= (std::initializer_list< T * >)
 Assignment to an initialiser list. More...
 
iterator begin ()
 
const_iterator begin () const
 
const iteratorend ()
 
const const_iteratorend () const
 
const_iterator cbegin () const
 
const const_iteratorcend () const
 

Additional Inherited Members

- Public Types inherited from ULPtrList< LListBase, T >
typedef Treference
 Type that can be used for storing into ULPtrList::value_type. More...
 
typedef Tconst_reference
 Type that can be used for storing into constant. More...
 
typedef LListBase::iterator LListBase_iterator
 
typedef LListBase::const_iterator LListBase_const_iterator
 
- Public Types inherited from LList< LListBase, T * >
typedef T * value_type
 Type of values the LList contains. More...
 
typedef T * & reference
 Type that can be used for storing into value_type. More...
 
typedef const T * & const_reference
 Type that can be used for storing into constant. More...
 
typedef label size_type
 The type that can represent the size of a LList. More...
 
typedef LListBase::iterator LListBase_iterator
 
typedef LListBase::const_iterator LListBase_const_iterator
 
- Protected Member Functions inherited from DictionaryBase< DLPtrList< T >, T >
void addEntries ()
 
- Protected Attributes inherited from DictionaryBase< DLPtrList< T >, T >
HashTable< T * > hashedTs_
 HashTable of the entries held on the IDLListType for quick lookup. More...
 

Detailed Description

template<class T>
class Foam::PtrDictionary< T >

Template dictionary class which manages the storage associated with it.

It is derived from DictionaryBase instantiated on a memory managed form of intrusive doubly-linked list of <T>.

Source files

Definition at line 53 of file PtrDictionary.H.

Constructor & Destructor Documentation

◆ PtrDictionary() [1/5]

PtrDictionary ( const label  size = 128)

Construct given initial table size.

Definition at line 31 of file PtrDictionary.C.

◆ PtrDictionary() [2/5]

PtrDictionary ( const PtrDictionary< T > &  dict)

Copy constructor.

Definition at line 38 of file PtrDictionary.C.

◆ PtrDictionary() [3/5]

PtrDictionary ( PtrDictionary< T > &&  dict)

Move constructor.

Definition at line 45 of file PtrDictionary.C.

◆ PtrDictionary() [4/5]

PtrDictionary ( Istream is,
const INew iNew 
)

Construct from Istream using given Istream constructor class.

Definition at line 53 of file PtrDictionary.C.

◆ PtrDictionary() [5/5]

Construct from Istream.

Definition at line 60 of file PtrDictionary.C.

Member Function Documentation

◆ operator[]() [1/2]

const T& operator[] ( const word key) const
inline

Find and return entry.

Definition at line 82 of file PtrDictionary.H.

References DictionaryBase< DLPtrList< T >, T >::operator, and Foam::T().

Here is the call graph for this function:

◆ operator[]() [2/2]

T& operator[] ( const word key)
inline

Find and return entry.

Definition at line 88 of file PtrDictionary.H.

References DictionaryBase< DLPtrList< T >, T >::operator, and Foam::T().

Here is the call graph for this function:

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