xentara-utils v2.0.4
The Xentara Utility Library
|
Determines if two types are the same, without taking into account qualifiers or references. More...
#include <xentara/utils/tools/TypeTraits.hpp>
Related Symbols | |
(Note that these are not member symbols.) | |
template<typename Type1 , typename Type2 > | |
constexpr bool | kIsSame |
Determines if two types are the same, without taking into account qualifiers or references. | |
Determines if two types are the same, without taking into account qualifiers or references.
This trait is equivalent to std::is_same<std::remove_cvref_t<Type1>, std::remove_cvref_t<Type2>>.
|
related |
Determines if two types are the same, without taking into account qualifiers or references.
This value is equivalent to std::is_same_v<std::remove_cvref_t<Type1>, std::remove_cvref_t<Type2>>.