namespace std {
namespace chrono {
template <class Rep1, class Period1, class Rep2, class Period2>
constexpr bool operator>=(const duration<Rep1, Period1>& lhs,
const duration<Rep2, Period2>& rhs);
}}
概要
左辺が右辺以上かの比較を行う
戻り値
2つのduration
の単位を合わせた上でcount()
の比較を行う。
using ct = common_type<decltype(lhs), decltype(rhs)>::type;
return ct(lhs).count() >= ct(rhs).count();
例
出力
バージョン
言語
- C++11
処理系
- GCC: 4.6.1 ✅
- Visual C++: 2012 ✅, 2013 ✅, 2015 ✅