4#ifndef TETL_CMATH_REMAINDER_HPP
5#define TETL_CMATH_REMAINDER_HPP
7#include <etl/_3rd_party/gcem/gcem.hpp>
16 return etl::detail::gcem::fmod(x, y);
24 return etl::detail::gcem::fmod(x, y);
32 return etl::detail::gcem::fmod(x, y);
40 return etl::detail::gcem::fmod(x, y);
48 return etl::detail::gcem::fmod(x, y);
constexpr auto remainderf(float x, float y) noexcept -> float
Computes the remainder of the floating point division operation x/y.
Definition remainder.hpp:22
constexpr auto remainderl(long double x, long double y) noexcept -> long double
Computes the remainder of the floating point division operation x/y.
Definition remainder.hpp:46
constexpr auto remainder(double x, double y) noexcept -> double
Computes the remainder of the floating point division operation x/y.
Definition remainder.hpp:30
constexpr auto remainder(long double x, long double y) noexcept -> long double
Computes the remainder of the floating point division operation x/y.
Definition remainder.hpp:38
constexpr auto remainder(float x, float y) noexcept -> float
Computes the remainder of the floating point division operation x/y.
Definition remainder.hpp:14
Definition adjacent_find.hpp:9