It compares strings using locale and compares s1 to s2 according to the ordering rules defined by the collate facet in the locale, and returns whether s1 goes before s2 in the collation order.
DeclarationFollowing is the declaration for std::locale::operator()
C++98template <class charT, class Traits, class Allocator> bool operator() (const basic_string<charT,Traits,Allocator>& s1, const basic_string<charT,Traits,Allocator>& s2) const;C++11
template <class charT, class Traits, class Allocator> bool operator() (const basic_string<charT,Traits,Allocator>& s1, const basic_string<charT,Traits,Allocator>& s2) const;Parameters
s1, s2 − It is a basic_string objects to be compared in a locale sensitive manner.
Return ValueIt returns true if s1 goes before s2 in the specific strict weak ordering the collate facet defines for strings, and false otherwise.
ExceptionsStrong guarantee − if an exception is thrown, there are no changes in any object.
Data racesThe locale object is accessed.
locale.htm
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4