| (since C++11) |
Exposes the type named type
, which is the common type of two std::chrono::duration
s.
Note
The period of the resulting duration is the greatest common divisor of Period1
and Period2
.
std::common_type<>
is specialized for std::chrono::duration
.
Example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | #include <iostream> #include <chrono> // std::chrono already finds the greatest common divisor, // likely using std::common_type<>. We make the type // deduction externally. template < typename T, typename S> auto durationDiff( const T& t, const S& s) -> typename std::common_type<T,S>::type { typedef typename std::common_type<T,S>::type Common; return Common(t) - Common(s); } int main() { typedef std::chrono::milliseconds milliseconds; typedef std::chrono::microseconds microseconds; auto ms = milliseconds(30); auto us = microseconds(1100); std::cout << ms.count() << "ms - " << us.count() << "us = " << durationDiff(ms,us).count() << "\n" ; } |
Output:
1 | 30ms - 1100us = 28900 |
See also
(C++11) | deduces the result type of a mixed-mode arithmetic expression (class template) |
Please login to continue.