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


Public Types | |
| typedef DictionaryBase< UIDLList< T >, T > | dict_type |
| The template instance used for the dictionary content. More... | |
Public Types inherited from UILList< LListBase, T > | |
| typedef T | value_type |
| Type of values stored. More... | |
| typedef T * | pointer |
| Pointer for value_type. More... | |
| typedef const T * | const_pointer |
| Const pointer for value_type. More... | |
| typedef T & | reference |
| Reference for value_type. More... | |
| typedef const T & | const_reference |
| Const reference for value_type. More... | |
| typedef label | size_type |
| The type that can represent the container size. More... | |
| typedef label | difference_type |
| The difference between iterator objects. More... | |
| using | base_iterator = typename LListBase::iterator |
| using | const_base_iterator = typename LListBase::const_iterator |
Public Member Functions | |
| UDictionary ()=default | |
| Default construct: empty without allocation (capacity=0). More... | |
| UDictionary (const label initialCapacity) | |
| Construct empty with initial table capacity. More... | |
| UDictionary (const UDictionary &dict) | |
| Copy construct. More... | |
Public Member Functions inherited from DictionaryBase< UIDLList< T >, T > | |
| DictionaryBase ()=default | |
| Default construct: empty without allocation (capacity=0). More... | |
| DictionaryBase (const label initialCapacity) | |
| Construct empty with initial table capacity. More... | |
| DictionaryBase (const DictionaryBase &dict) | |
| Copy construct. More... | |
| DictionaryBase (Istream &is, const INew &inew) | |
| Construct from Istream using given Istream constructor class. More... | |
| DictionaryBase (Istream &is) | |
| Construct from Istream using default Istream constructor class. More... | |
| bool | contains (const word &keyword) const |
| Search for given keyword. More... | |
| const T * | cfind (const word &keyword) const |
| Find and return an entry, nullptr on failure. More... | |
| T * | find (const word &keyword) |
| Find and return an entry, nullptr on failure. More... | |
| const T * | lookup (const word &keyword) const |
| Find and return entry, FatalError on failure. More... | |
| T * | lookup (const word &keyword) |
| Find and return entry, FatalError on failure. More... | |
| wordList | toc () const |
| The table of contents (as a sorted list) More... | |
| wordList | sortedToc () const |
| The table of contents as a sorted list. More... | |
| wordList | sortedToc (const Compare &comp) const |
| The table of contents sorted using the specified comparator. More... | |
| void | push_front (const word &keyword, T *ptr) |
| Add to front of dictionary. More... | |
| void | push_back (const word &keyword, T *ptr) |
| Add to back of dictionary. More... | |
| T * | remove (const word &keyword) |
| Remove and return entry specified by keyword. More... | |
| void | clear () |
| Clear the dictionary. More... | |
| void | transfer (DictionaryBase< UIDLList< T >, T > &dict) |
| Transfer the contents of the argument into this DictionaryBase. More... | |
| void | operator= (const DictionaryBase &) |
| Copy assignment. More... | |
| const T * | operator[] (const word &key) const |
| Find and return entry. More... | |
| T * | operator[] (const word &key) |
| Find and return entry. More... | |
| bool | found (const word &key) const |
| Same as contains() More... | |
| const T * | lookupPtr (const word &k) const |
| Deprecated(2020-03) use cfind() More... | |
| T * | lookupPtr (const word &k) |
| Deprecated(2020-03) use find() More... | |
| void | insert (const word &k, T *ptr) |
| Add to front of dictionary. More... | |
| void | prepend (const word &k, T *ptr) |
| Add to front of dictionary. More... | |
| void | append (const word &k, T *ptr) |
| Add to back of dictionary. More... | |
Public Member Functions inherited from UILList< LListBase, T > | |
| UILList ()=default | |
| Default construct. More... | |
| UILList (T *item) | |
| Construct and add initial item pointer. More... | |
| UILList (const UILList< LListBase, T > &list) | |
| Construct as copy. More... | |
| T * | front () |
| The first entry in the list. More... | |
| const T * | front () const |
| The first entry in the list (const access) More... | |
| T * | back () |
| The last entry in the list. More... | |
| const T * | back () const |
| The last entry in the list (const access) More... | |
| T * | removeHead () |
| Remove and return head. More... | |
| T * | remove (T *item) |
| Remove and return element. More... | |
| T * | remove (iterator &iter) |
| Remove and return item specified by iterator. More... | |
| void | operator= (const UILList< LListBase, T > &lst) |
| Copy assignment. More... | |
| bool | operator== (const UILList< LListBase, T > &lst) const |
| Equality. True both lists are element-wise equal. More... | |
| bool | operator!= (const UILList< LListBase, T > &lst) const |
| The opposite of the equality operation. Takes linear time. More... | |
| Ostream & | writeList (Ostream &os, const label shortLen=0) const |
| Write UILList with line-breaks when length exceeds shortLen. More... | |
| iterator | begin () |
| Iterator to first item in list with non-const access. More... | |
| const_iterator | cbegin () const |
| Iterator to first item in list with const access. More... | |
| reverse_iterator | rbegin () |
| Iterator to last item in list with non-const access. More... | |
| const_reverse_iterator | crbegin () const |
| Iterator to last item in list with const access. More... | |
| const_iterator | begin () const |
| Iterator to first item in list with const access. More... | |
| const_reverse_iterator | rbegin () const |
| Iterator to last item in list with const access. More... | |
| const iterator & | end () |
| End of list for forward iterators. More... | |
| const const_iterator & | cend () const |
| End of list for forward iterators. More... | |
| const reverse_iterator & | rend () |
| End of list for reverse iterators. More... | |
| const const_reverse_iterator & | crend () const |
| End of list for reverse iterators. More... | |
| const const_iterator & | end () const |
| End of list for forward iterators. More... | |
| const const_reverse_iterator & | rend () const |
| End of list for reverse iterators. More... | |
| T * | first () |
| The first entry in the list. More... | |
| const T * | first () const |
| The first entry in the list (const access) More... | |
| T * | last () |
| The last entry in the list. More... | |
| const T * | last () const |
| The last entry in the list (const access) More... | |
Additional Inherited Members | |
Protected Member Functions inherited from DictionaryBase< UIDLList< T >, T > | |
| bool | addHashEntry (const word &key, T *ptr) |
| Add an entry to the HashTable. More... | |
| void | addEntries () |
| Add the IDLListType entries into the HashTable. More... | |
Protected Attributes inherited from DictionaryBase< UIDLList< T >, T > | |
| HashTable< T *> | hashedTs_ |
| HashTable of the entries held on the IDLListType for quick lookup. More... | |
Template dictionary class which does not manages the storage associated with it.
It is derived from DictionaryBase instantiated on a non-memory managed form of intrusive doubly-linked list of <T>.
Definition at line 48 of file UDictionary.H.
| typedef DictionaryBase<UIDLList<T>, T> dict_type |
The template instance used for the dictionary content.
Definition at line 57 of file UDictionary.H.
|
default |
Default construct: empty without allocation (capacity=0).
|
inlineexplicit |
Construct empty with initial table capacity.
Definition at line 70 of file UDictionary.H.
|
inline |
Copy construct.
Definition at line 78 of file UDictionary.H.