std::chrono::floor(std::chrono::duration) (3) - Linux Manuals
std::chrono::floor(std::chrono::duration): std::chrono::floor(std::chrono::duration)
NAME
std::chrono::floor(std::chrono::duration) - std::chrono::floor(std::chrono::duration)
Synopsis
Defined in header <chrono>
template <class ToDuration, class Rep, class Period> (since C++17)
constexpr ToDuration floor(const duration<Rep, Period>& d);
Returns the greatest duration t representable in ToDuration that is less or equal to d.
The function does not participate in the overload resolution unless ToDuration is an instance of std::chrono::duration.
Parameters
d - duration to convert
Return value
d rounded down to a duration of type ToDuration.
Possible implementation
Example
This section is incomplete
Reason: no example
See also
duration_cast (function template)
ceil(std::chrono::duration) converts a duration to another, rounding up
(C++17)
round(std::chrono::duration) converts a duration to another, rounding to nearest, ties to even
(C++17)
floor(std::chrono::time_point) converts a time_point to another, rounding down
(C++17)
floor
floorf
floorl nearest integer not greater than the given value
(C++11)
(C++11)