std::common_type(std::chrono::time_point)
提供: cppreference.com
< cpp | chrono | time point
template <class Clock, class Duration1, class Duration2> struct common_type<std::chrono::time_point<Clock, Duration1>, |
(C++11以上) | |
2つの std::chrono::time_point の共通型となるメンバ型 type
を提供します。
[編集] ノート
2つの std::chrono::time_point の共通型は、2つの型と同じ時計と、それらの duration の std::common_type を持つ、 std::chrono::time_point です。
[編集] 例
This section is incomplete Reason: no example |
[編集] 関連項目
(C++11) |
指定された型のグループの共通型を調べます (クラステンプレート) |