namespace std {
// operator<=>により、以下の演算子が使用可能になる (C++20)
template<class... TTypes, class... UTypes>
bool operator<=(const tuple<TTypes...>& t,
const tuple<UTypes...>& u); // (1) C++11
template<class... TTypes, class... UTypes>
constexpr bool operator<=(const tuple<TTypes...>& t,
const tuple<UTypes...>& u); // (1) C++14
}
概要
2つのtuple
において、左辺が右辺以下かの比較を行う。
要件
2つのtuple
の要素数が同じであること。
戻り値
!(u < t)
例
#include <iostream>
#include <tuple>
#include <string>
int main()
{
std::tuple<int, char, std::string> t1(1, 'a', "hello");
std::tuple<int, char, std::string> t2(2, 'b', "world");
std::tuple<int, char, std::string> t3(2, 'b', "world");
std::cout << std::boolalpha;
{
bool result = t1 <= t2;
std::cout << result << std::endl;
}
{
bool result = t2 <= t1;
std::cout << result << std::endl;
}
{
bool result = t2 <= t3;
std::cout << result << std::endl;
}
}
出力
true
false
true
バージョン
言語
- C++11
処理系
- Clang: ??
- GCC: 4.6.1 ✅
- ICC: ??
- Visual C++: ??
関連項目
参照
- N3471 Constexpr Library Additions: utilities, v3
- P1614R2 The Mothership has Landed
- C++20での三方比較演算子の追加と、関連する演算子の自動導出