We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e08353c commit f7ad263Copy full SHA for f7ad263
include/nonstd/string.hpp
@@ -2039,13 +2039,17 @@ split_right(
2039
// Comparision:
2040
//
2041
2042
+// defined in namespace nonstd
2043
+
2044
#define string_MK_COMPARE( CharT ) \
2045
string_nodiscard inline int \
2046
compare( std17::basic_string_view<CharT> lhs, std17::basic_string_view<CharT> rhs ) \
2047
{ \
2048
return lhs.compare( rhs ); \
2049
}
2050
2051
+// defined in namespace nonstd::string::std17
2052
2053
#define string_MK_COMPARE_EQ( CharT ) \
2054
string_nodiscard inline bool \
2055
operator==( basic_string_view<CharT> lhs, basic_string_view<CharT> rhs ) \
0 commit comments