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::char_traits::eq,std::char_traits::lt(3) C++ Standard Libary std::char_traits::eq,std::char_traits::lt(3)

std::char_traits::eq,std::char_traits::lt - std::char_traits::eq,std::char_traits::lt


static bool eq( char_type a, char_type b ); (until C++11)
static constexpr bool eq( char_type a, char_type (since C++11)
b ) noexcept; (1)
static bool lt( char_type a, char_type b ); (until C++11)
static constexpr bool lt( char_type a, char_type (2) (since C++11)
b ) noexcept;


Compares two characters.


1) Compares a and b for equality.
2) Compares a and b in such a way that they are totally ordered.


For the char specialization, eq and lt are defined identically to the (since C++11)
built-in operators == and < for type unsigned char (not char).


a, b - character values to compare


1) true if a and b are equal, false otherwise.
2) true if a is less than b, false otherwise.


Constant.

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.