- chrono[meta header]
- std::chrono[meta namespace]
- function template[meta id-type]
- cpp17[meta cpp]
namespace std::chrono {
template <class ToDuration, class Rep, class Period>
constexpr ToDuration round(const duration<Rep, Period>& d);
}
分解能が低いduration
に変換する際に、偶数方向への丸め (最近接偶数への丸め) を行う。
d
から最も近い偶数値を返す。
treat_as_floating_point
<typename ToDuration::rep>::value == true
である場合、この関数はオーバーロード解決の候補から外れる
#include <iostream>
#include <chrono>
using namespace std::chrono;
int main()
{
milliseconds ms{1500};
seconds s = round<seconds>(ms);
std::cout << s.count() << std::endl;
}
- round[color ff0000]
- s.count()[link count.md]
2
- C++17
- GCC: 7.3 [mark verified]
- Clang: 3.8 [mark verified]
- Visual C++: ??
名前 | 説明 |
---|---|
duration_cast |
ゼロ方向への丸め |
floor |
負の無限大方向への丸め |
ceil |
正の無限大方向への丸め |