|
| LduInterfaceFieldPtrsList (label size) |
|
| UPtrList () |
| Null Constructor. More...
|
|
| UPtrList (const label) |
| Construct with size specified. More...
|
|
| UPtrList (UPtrList< const LduInterfaceField< Type > > &, bool reuse) |
| Construct as copy or re-use as specified. More...
|
|
label | size () const |
| Return the number of elements in the UPtrList. More...
|
|
bool | empty () const |
| Return true if the UPtrList is empty (ie, size() is zero) More...
|
|
const LduInterfaceField< Type > & | first () |
| Return reference to the first element of the list. More...
|
|
const const LduInterfaceField< Type > & | first () const |
| Return reference to first element of the list. More...
|
|
const LduInterfaceField< Type > & | last () |
| Return reference to the last element of the list. More...
|
|
const const LduInterfaceField< Type > & | last () const |
| Return reference to the last element of the list. More...
|
|
void | setSize (const label) |
| Reset size of UPtrList. This can only be used to set the size. More...
|
|
void | resize (const label) |
| Reset size of UPtrList. This can only be used to set the size. More...
|
|
void | clear () |
| Clear the UPtrList, i.e. set size to zero. More...
|
|
void | transfer (UPtrList< const LduInterfaceField< Type > > &) |
| Transfer the contents of the argument UPtrList into this. More...
|
|
bool | set (const label) const |
| Is element set. More...
|
|
const LduInterfaceField< Type > * | set (const label, const LduInterfaceField< Type > *) |
| Set element. Return old element (can be nullptr). More...
|
|
void | reorder (const labelUList &oldToNew) |
| Reorders elements. Ordering does not have to be done in. More...
|
|
void | shuffle (const labelUList &newToOld) |
| Reorders elements. Ordering does not have to be done in. More...
|
|
const const LduInterfaceField< Type > & | operator[] (const label) const |
| Return element const reference. More...
|
|
const LduInterfaceField< Type > & | operator[] (const label) |
| Return element reference. More...
|
|
const const LduInterfaceField< Type > * | operator() (const label) const |
| Return element const pointer. More...
|
|
iterator | begin () |
| Return an iterator to begin traversing the UPtrList. More...
|
|
const_iterator | begin () const |
| Return an const_iterator to begin traversing the UPtrList. More...
|
|
iterator | end () |
| Return an iterator to end traversing the UPtrList. More...
|
|
const_iterator | end () const |
| Return an const_iterator to end traversing the UPtrList. More...
|
|
const_iterator | cbegin () const |
| Return an const_iterator to begin traversing the UPtrList. More...
|
|
const_iterator | cend () const |
| Return an const_iterator to end traversing the UPtrList. More...
|
|