Defined in header <chrono> | ||||
---|---|---|---|---|
| (since C++17) |
Returns the largest time point t
representable in ToDuration
that is smaller or equal to tp
.
The function does not participate in the overload resolution unless ToDuration
is an specialization of std::chrono::duration
.
Parameters
tp | - | time point to round down |
Return value
d
rounded down to a the next time point using duration of type ToDuration
.
Possible implementation
|
Example
See also
converts a time point to another time point on the same clock, with a different duration (function template) | |
(C++17) | converts a time_point to another, rounding up (function template) |
(C++17) | converts a time_point to another, rounding to nearest, ties to even (function template) |
(C++17) | converts a duration to another, rounding down (function template) |
nearest integer not greater than the given value (function) |
Please login to continue.