|
ORIGINAL
|
A placeholder type representing the absence of a value. More...
#include <types.h>

Public Member Functions | |
| consteval | null ()=default |
| Default constructor (consteval) | |
| constexpr | ~null ()=default |
| Default destructor (constexpr) | |
| consteval | operator bool () const |
| Bool conversion operator. | |
| consteval bool | operator! () const |
| Logical NOT operator. | |
A placeholder type representing the absence of a value.
This class provides consteval operations and can be converted to bool, always returning false. Useful for template metaprogramming and representing empty states.
Bool conversion operator.