std::chrono::ceil(std::chrono::duration)

From cppreference.com
< cpp‎ | chrono‎ | duration
 
 
Utilities library
Type support (basic types, RTTI, type traits)
Dynamic memory management
Error handling
Program utilities
Variadic functions
Date and time
Function objects
(C++11)
Relational operators
Optional and any
(C++17)
(C++17)
Pairs and tuples
(C++11)
(C++17)
Swap, forward and move
(C++14)
(C++11)
(C++11)
Type operations
(C++11)
(C++17)
 
 
 
Defined in header <chrono>
template <class ToDuration, class Rep, class Period>
constexpr ToDuration ceil(const duration<Rep, Period>& d);
(since C++17)

Returns the smallest duration t representable in ToDuration that is greater or equal to d.

The function does not participate in the overload resolution unless ToDuration is an instance of std::chrono::duration.

Contents

[edit] Parameters

d - duration to convert

[edit] Return value

d rounded up to a duration of type ToDuration.

[edit] Possible implementation

template <class T> struct is_duration : std::false_type {};
template <class Rep, class Period> struct is_duration<
    std::chrono::duration<Rep, Period>> : std::true_type {};
 
template <class To, class Rep, class Period,
          class = enable_if_t<is_duration<To>{}>>
constexpr To ceil(const std::chrono::duration<Rep, Period>& d)
{
    To t = std::chrono::duration_cast<To>(d);
    if (t < d)
        return t + To{1};
    return t;
}

[edit] Example

[edit] See also

converts a duration to another, with a different tick interval
(function template)
converts a duration to another, rounding down
(function template)
converts a duration to another, rounding to nearest, ties to even
(function template)
converts a time_point to another, rounding up
(function template)
nearest integer not less than the given value
(function)