VCCC  2024.05
VisualCamp Common C++ library
same_as

specifies that a type is the same as another type More...

Detailed Description

template<typename T, typename U>
struct same_as : std::is_same<T, U> {};

The concept same_as<T, U> is satisfied if and only if T and U denote the same type.

Notes

Implementing partial ordering is impossible without using actual concepts

Classes

struct  same_as< T, U >
 Models std::same_as More...