3#ifndef TETL_CMATH_FMOD_HPP
4#define TETL_CMATH_FMOD_HPP
6#include <etl/_3rd_party/gcem/gcem.hpp>
15[[nodiscard]]
constexpr auto fmod(
float x,
float y)
noexcept ->
float {
return etl::detail::gcem::fmod(x, y); }
16[[nodiscard]]
constexpr auto fmodf(
float x,
float y)
noexcept ->
float {
return etl::detail::gcem::fmod(x, y); }
17[[nodiscard]]
constexpr auto fmod(
double x,
double y)
noexcept ->
double {
return etl::detail::gcem::fmod(x, y); }
18[[nodiscard]]
constexpr auto fmod(
long double x,
long double y)
noexcept ->
long double
20 return etl::detail::gcem::fmod(x, y);
22[[nodiscard]]
constexpr auto fmodl(
long double x,
long double y)
noexcept ->
long double
24 return etl::detail::gcem::fmod(x, y);
constexpr auto fmodl(long double x, long double y) noexcept -> long double
Computes the floating-point remainder of the division operation x/y.
Definition fmod.hpp:22
constexpr auto fmodf(float x, float y) noexcept -> float
Computes the floating-point remainder of the division operation x/y.
Definition fmod.hpp:16
constexpr auto fmod(float x, float y) noexcept -> float
Computes the floating-point remainder of the division operation x/y.
Definition fmod.hpp:15
Definition adjacent_find.hpp:8