std::common_type(std::chrono::time_point)

template <class Clock, class Duration1, class Duration2>
struct common_type<std::chrono::time_point<Clock, Duration1>, 
                   std::chrono::time_point<Clock, Duration2>> {
    typedef std::chrono::time_point<
        Clock, typename std::common_type<Duration1, Duration2>::type> type;
};
(since C++11)

Exposes the type named type, which is the common type of two std::chrono::time_points.

Notes

The common type of two std::chrono::time_point types is a std::chrono::time_point with the same clock as the two types and the std::common_type of their durations.

Example

See also

(C++11)
deduces the result type of a mixed-mode arithmetic expression
(class template)
doc_CPP
2016-10-11 10:02:01
Comments
Leave a Comment

Please login to continue.