static int compare( const char_type* s1, const char_type* s2, std::size_t count ); | (until C++17) | |
static constexpr int compare( const char_type* s1, const char_type* s2, std::size_t count ); | (since C++17) |
Compares the first count
characters of the character strings s1
and s2
. The comparison is done lexicographically.
If count
is zero, strings are considered equal.
s1, s2 | - | pointers to character strings to compare |
count | - | the number of characters to compare from each character string |
Negative value if s1
is less than s2
.
0
if s1
is equal to s2
.
Positive value if s1
is greater than s2
.
(none).
Linear in count
.
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/string/char_traits/compare