std::Same (3) - Linux Manuals
std::Same: std::Same
NAME
Synopsis
Defined in header <concepts>
template < class T, class U > (since C++20)
concept Same = /* see below */;
The concept Same<T, U> is satisfied if and only if T and U denote the same type.
std::Same<T, U> subsumes std::Same<U, T> and vice versa.
Possible implementation
See also
is_same checks if two types are the same
(C++11)