namespace std {
// operator<=>により、以下の演算子が使用可能になる (C++20)
template <class T1, class T2>
bool operator<(const pair<T1, T2>& x, const pair<T1, T2>& y); // (1) C++03
template <class T1, class T2>
constexpr bool operator<(const pair<T1, T2>& x, const pair<T1, T2>& y); // (1) C++14
}
概要
2つのpair
について、左辺が右辺より小さいかの判定を行う
戻り値
return x.first < y.first || (!(y.first < x.first) && x.second < y.second);
例
#include <iostream>
#include <utility>
#include <string>
int main()
{
std::pair<int, std::string> p1(1, "aaa");
std::pair<int, std::string> p2(2, "bbb");
std::cout << std::boolalpha;
std::cout << (p1 < p2) << std::endl;
std::cout << (p2 < p1) << std::endl;
}
出力
true
false
関連項目
参照
- N3471 Constexpr Library Additions: utilities, v3
- P1614R2 The Mothership has Landed
- C++20での三方比較演算子の追加と、関連する演算子の自動導出