constexpr common_type_t<duration> operator-() const;
概要
負の符号。
符号反転する。
戻り値
return common_type_t<duration>(-rep_);
※ rep_
は内部で保持している値。メンバ変数名は説明用のもの
例
出力
2
-2
バージョン
言語
- C++11
処理系
- GCC: 4.5.1 ✅, 4.6.1 ✅
- Visual C++: 2012 ✅, 2013 ✅, 2015 ✅
constexpr common_type_t<duration> operator-() const;
負の符号。
符号反転する。
return common_type_t<duration>(-rep_);
※ rep_
は内部で保持している値。メンバ変数名は説明用のもの
2
-2