GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::experimental::ranges::Same(3) C++ Standard Libary std::experimental::ranges::Same(3)

std::experimental::ranges::Same - std::experimental::ranges::Same


Defined in header <experimental/ranges/concepts>
template < class T, class U > (ranges TS)
concept bool Same = std::is_same<T, U>::value; // see below


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


Despite being specified using it, there need not be any subsumption relationship
between Same<T, U> and std::is_same<T, U>::value.


For the purposes of constraint checking, Same<T, U> implies Same<U, T>.


The additional requirement on constraint checking differentiates Same from
std::is_same.


is_same checks if two types are the same
(C++11) (class template)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.