Visual Computing Library
All Classes Functions Variables Typedefs Enumerations Friends Modules Pages Concepts
vcl::NonBoolIntegralOrEnum Concept Reference

Concept for types that can be used as indices, excluding bool. More...

#include <vclib/concepts/types.h>

Concept definition

template<typename T>
concept vcl::NonBoolIntegralOrEnum = IntegralOrEnum<T> && !std::same_as<T, bool>
Concept for types that can be used as indices.
Definition types.h:38
Concept for types that can be used as indices, excluding bool.
Definition types.h:46

Detailed Description

Concept for types that can be used as indices, excluding bool.