xentara-utils v1.2.1
Xentara utilities library
Loading...
Searching...
No Matches
xentara::utils::tools::SameAs Concept Reference

Determines if two types are the same, without taking into account qualifiers or references. More...

#include <tools/Concepts.hpp>

Concept definition

template<typename Type1, typename Type2>
Determines if two types are the same, without taking into account qualifiers or references.
Definition Concepts.hpp:115
T make_unique(T... args)

Detailed Description

Determines if two types are the same, without taking into account qualifiers or references.

This concept is equivalent to std::same_as<std::remove_cvref_t<Type1>, std::remove_cvref_t<Type2>>.

See also
std::same_as, IsSame