4#ifndef TETL_CMATH_CEIL_HPP
5#define TETL_CMATH_CEIL_HPP
7#include <etl/_3rd_party/gcem/gcem.hpp>
17[[nodiscard]]
constexpr auto ceil(
float arg)
noexcept ->
float {
return etl::detail::gcem::ceil(
arg); }
18[[nodiscard]]
constexpr auto ceilf(
float arg)
noexcept ->
float {
return etl::detail::gcem::ceil(
arg); }
19[[nodiscard]]
constexpr auto ceil(
double arg)
noexcept ->
double {
return etl::detail::gcem::ceil(
arg); }
20[[nodiscard]]
constexpr auto ceil(
long double arg)
noexcept ->
long double {
return etl::detail::gcem::ceil(
arg); }
21[[nodiscard]]
constexpr auto ceill(
long double arg)
noexcept ->
long double {
return etl::detail::gcem::ceil(
arg); }
22[[nodiscard]]
constexpr auto ceil(
integral auto arg)
noexcept ->
double {
return etl::detail::gcem::ceil(
double(
arg)); }
The concept integral<T> is satisfied if and only if T is an integral type.
Definition integral.hpp:13
constexpr auto ceilf(float arg) noexcept -> float
Computes the smallest integer value not less than arg.
Definition ceil.hpp:18
constexpr auto ceil(float arg) noexcept -> float
Computes the smallest integer value not less than arg.
Definition ceil.hpp:17
constexpr auto ceill(long double arg) noexcept -> long double
Computes the smallest integer value not less than arg.
Definition ceil.hpp:21
constexpr auto arg(complex< T > const &z) noexcept -> T
Definition arg.hpp:15
Definition adjacent_find.hpp:8