Go to the source code of this file.
|
| | Foam |
| | Namespace for OpenFOAM.
|
| |
|
| Istream & | operator>> (Istream &is, const NullObject &) noexcept |
| | Read from Istream consumes no content, does not change NullObject. More...
|
| |
| Ostream & | operator<< (Ostream &os, const NullObject &) noexcept |
| | Write to Ostream emits no content. More...
|
| |
| template<class T > |
| const T * | NullObjectPtr () noexcept |
| | Const pointer (of type T) to the nullObject. More...
|
| |
| template<class T > |
| T * | NullObjectPtr_constCast () noexcept |
| | Non-const pointer (of type T) to the nullObject. Only use when nothing will be written into it! More...
|
| |
| template<class T > |
| const T & | NullObjectRef () noexcept |
| | Const reference (of type T) to the nullObject. More...
|
| |
| template<class T > |
| T & | NullObjectRef_constCast () noexcept |
| | Non-const reference (of type T) to the nullObject Only use when nothing will be written into it! More...
|
| |
| template<class T > |
| bool | isNull (const T *ptr) noexcept |
| | True if ptr is a pointer (of type T) to the nullObject. More...
|
| |
| template<class T > |
| bool | isNull (const T &obj) noexcept |
| | True if obj is a reference (of type T) to the nullObject. More...
|
| |
| template<class T > |
| bool | notNull (const T *ptr) noexcept |
| | True if ptr is not a pointer (of type T) to the nullObject. More...
|
| |
| template<class T > |
| bool | notNull (const T &obj) noexcept |
| | True if obj is not a reference (of type T) to the nullObject. More...
|
| |
Original source file nullObject.H
Definition in file nullObject.H.