type undefined - kwikius/pqs GitHub Wiki

| Home | Concepts | Types |

Description

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.

⚠️ **GitHub.com Fallback** ⚠️