std::nontype, std::nontype_t
Min standard notice:
Header: <utility>
- The class template std::nontype_t can be used in the constructor’s parameter list to match the intended tag.
# Declarations
template< auto V >
struct nontype_t { explicit nontype_t() = default; };
(since C++26)
template< auto V >
constexpr std::nontype_t<V> nontype {};
(since C++26)