25 #include <edsp/meta/iterator.hpp>    29 namespace edsp { 
inline namespace algorithm {
    39     template <
typename InputIt, 
typename OutputIt>
    40     constexpr 
void ceil(InputIt first, InputIt last, OutputIt d_first) {
    43             [](
const meta::value_type_t<InputIt> value) -> meta::value_type_t<OutputIt> { 
return std::ceil(value); });
    48 #endif // EDSP_CEIL_HPP constexpr void ceil(InputIt first, InputIt last, OutputIt d_first)
For each element in the range [first, last) computes the smallest integer value not less than the ele...
Definition: ceil.hpp:40
 
Definition: amplifier.hpp:29