We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
| Home | Concepts | Types |
The undefined type is useful to represent invalid constructs. Conceptually:
template <typename T> concept any = !std::is_same_v<T,undefined>;
An attempt to instantiate the type will result in an error.