Object registry for simpleRegIOobject. Maintains ordering. More...
Public Member Functions | |
simpleObjectRegistry (const label nIoObjects=128) | |
Construct given initial table size. More... | |
Public Member Functions inherited from Dictionary< simpleObjectRegistryEntry > | |
Dictionary (const label size=128) | |
Construct given initial table size. More... | |
Dictionary (const Dictionary &) | |
Copy constructor. More... | |
Dictionary (Dictionary &&) | |
Move constructor. More... | |
bool | erase (const word &keyword) |
Remove an entry specified by keyword and delete the pointer. More... | |
Public Member Functions inherited from DictionaryBase< IDLList< simpleObjectRegistryEntry >, simpleObjectRegistryEntry > | |
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 simpleObjectRegistryEntry * | lookupPtr (const word &) const |
Find and return an entry if present, otherwise return nullptr. More... | |
simpleObjectRegistryEntry * | lookupPtr (const word &) |
Find and return an entry if present, otherwise return nullptr. More... | |
const simpleObjectRegistryEntry * | lookup (const word &) const |
Find and return entry. More... | |
simpleObjectRegistryEntry * | 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 &, simpleObjectRegistryEntry *) |
Add at head of dictionary. More... | |
void | append (const word &, simpleObjectRegistryEntry *) |
Add at tail of dictionary. More... | |
simpleObjectRegistryEntry * | remove (const word &) |
Remove and return entry specified by keyword. More... | |
void | clear () |
Clear the dictionary. More... | |
void | transfer (DictionaryBase< IDLList< simpleObjectRegistryEntry >, simpleObjectRegistryEntry > &) |
Transfer the contents of the argument into this DictionaryBase. More... | |
void | operator= (const DictionaryBase &) |
const simpleObjectRegistryEntry * | operator[] (const word &key) const |
Find and return entry. More... | |
simpleObjectRegistryEntry * | operator[] (const word &key) |
Find and return entry. More... | |
Public Member Functions inherited from ILList< LListBase, T > | |
ILList () | |
Null construct. More... | |
ILList (T *a) | |
Construct given initial T. More... | |
ILList (Istream &) | |
Construct from Istream. More... | |
ILList (const ILList< LListBase, T > &) | |
Copy constructor. More... | |
ILList (ILList< LListBase, T > &&) | |
Move constructor. More... | |
template<class CloneArg > | |
ILList (const ILList< LListBase, T > &lst, const CloneArg &cloneArg) | |
Copy constructor with additional argument for clone. More... | |
template<class INew > | |
ILList (Istream &, const INew &) | |
Construct from Istream using given Istream constructor class. More... | |
~ILList () | |
Destructor. More... | |
bool | eraseHead () |
Remove the head element specified from the list and delete it. More... | |
bool | erase (T *p) |
Remove the specified element from the list and delete it. More... | |
void | clear () |
Clear the contents of the list. More... | |
void | transfer (ILList< LListBase, T > &) |
Transfer the contents of the argument into this List. More... | |
void | operator= (const ILList< LListBase, T > &) |
Assignment operator. More... | |
void | operator= (ILList< LListBase, T > &&) |
Move assignment operator. More... | |
Public Member Functions inherited from UILList< LListBase, T > | |
UILList () | |
Null construct. More... | |
UILList (T *a) | |
Construct given initial T. More... | |
UILList (const UILList< LListBase, T > &) | |
Copy constructor. More... | |
UILList (UILList< LListBase, T > &&) | |
Move constructor. More... | |
T * | first () |
Return the first entry. More... | |
const T * | first () const |
Return the first entry. More... | |
T * | last () |
Return the last entry. More... | |
const T * | last () const |
Return the last entry. More... | |
T * | removeHead () |
Remove and return head. More... | |
T * | remove (T *p) |
Remove and return element. More... | |
T * | remove (iterator &it) |
Remove and return specified by iterator. More... | |
void | operator= (const UILList< LListBase, T > &) |
Assignment operator. More... | |
void | operator= (UILList< LListBase, T > &&) |
Move assignment operator. More... | |
iterator | begin () |
const iterator & | end () |
const_iterator | cbegin () const |
const const_iterator & | cend () const |
const_iterator | begin () const |
const const_iterator & | end () const |
const_reverse_iterator | crbegin () const |
const const_reverse_iterator & | crend () const |
const_reverse_iterator | rbegin () const |
const const_reverse_iterator & | rend () const |
bool | operator== (const UILList< LListBase, T > &) const |
Equality operation on ULists of the same type. More... | |
bool | operator!= (const UILList< LListBase, T > &) const |
The opposite of the equality operation. Takes linear time. More... | |
Additional Inherited Members | |
Public Types inherited from UILList< LListBase, T > | |
typedef T | value_type |
Type of values the DLList contains. More... | |
typedef T & | reference |
Type that can be used for storing into DLList::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 DLList. More... | |
typedef LListBase::iterator | LListBase_iterator |
typedef LListBase::const_iterator | LListBase_const_iterator |
Protected Member Functions inherited from DictionaryBase< IDLList< simpleObjectRegistryEntry >, simpleObjectRegistryEntry > | |
void | addEntries () |
Protected Attributes inherited from DictionaryBase< IDLList< simpleObjectRegistryEntry >, simpleObjectRegistryEntry > | |
HashTable< simpleObjectRegistryEntry *> | hashedTs_ |
HashTable of the entries held on the IDLListType for quick lookup. More... | |
Object registry for simpleRegIOobject. Maintains ordering.
Definition at line 66 of file simpleObjectRegistry.H.
|
inline |
Construct given initial table size.
Definition at line 75 of file simpleObjectRegistry.H.