namespace std {
// operator<=>により、以下の演算子が使用可能になる (C++20)
template <class CharT, class Traits>
constexpr bool operator<(basic_string_view<CharT, Traits> x,
basic_string_view<CharT, Traits> y) noexcept; // (1) C++17
}
概要
basic_string_view
オブジェクトにおいて、左辺が右辺より小さいかの判定を行う。
戻り値
return x.compare(y) < 0;
例
#include <iostream>
#include <string_view>
int main()
{
std::string_view a = "aaa";
std::string_view b = "bbb";
if (a < b) {
std::cout << "less" << std::endl;
}
else {
std::cout << "greater equal" << std::endl;
}
}
xxxxxxxxxx
#include <iostream>
#include <string_view>
int main()
{
std::string_view a = "aaa";
std::string_view b = "bbb";
if (a < b) {
std::cout << "less" << std::endl;
}
else {
std::cout << "greater equal" << std::endl;
}
}
出力例
less
バージョン
言語
- C++17
処理系
- Clang: 4.0 ✅
- GCC: 7.1 ✅
- ICC: ??
- Visual C++: ??
参照
- P1614R2 The Mothership has Landed
- C++20での三方比較演算子の追加と、関連する演算子の自動導出