4#ifndef TETL_CMATH_FMAX_HPP
5#define TETL_CMATH_FMAX_HPP
7#include <etl/_3rd_party/gcem/gcem.hpp>
20 return etl::detail::gcem::max(x, y);
25 return etl::detail::gcem::max(x, y);
30 return etl::detail::gcem::max(x, y);
33[[
nodiscard]]
constexpr auto fmax(
long double x,
long double y)
noexcept ->
long double
35 return etl::detail::gcem::max(x, y);
38[[
nodiscard]]
constexpr auto fmaxl(
long double x,
long double y)
noexcept ->
long double
40 return etl::detail::gcem::max(x, y);
constexpr auto fmax(double x, double y) noexcept -> double
Definition fmax.hpp:28
constexpr auto fmaxf(float x, float y) noexcept -> float
Definition fmax.hpp:23
constexpr auto fmax(long double x, long double y) noexcept -> long double
Definition fmax.hpp:33
constexpr auto fmax(float x, float y) noexcept -> float
Definition fmax.hpp:18
constexpr auto fmaxl(long double x, long double y) noexcept -> long double
Definition fmax.hpp:38
Definition adjacent_find.hpp:9