3#ifndef pRC_CORE_VALUE_FUNCTIONS_FMOD_H
4#define pRC_CORE_VALUE_FUNCTIONS_FMOD_H
14 template<IsFloat TA, IsFloat TB>
15 static inline constexpr auto fmod(TA
const &a, TB
const &b)
17 return Float(std::fmod(a(), b()));
20 template<IsInteger TA, IsFloat TB>
21 static inline constexpr auto fmod(TA
const &a, TB
const &b)
26 template<IsFloat TA, IsInteger TB>
27 static inline constexpr auto fmod(TA
const &a, TB
const &b)
32 template<IsInteger TA, IsInteger TB>
33 static inline constexpr auto fmod(TA
const &a, TB
const &b)
Definition cholesky.hpp:10
Float(Float< 16 >::Fundamental const) -> Float< 16 >
static constexpr auto cast(T const &a)
Definition cast.hpp:11
static constexpr auto fmod(XA &&a, XB &&b)
Definition fmod.hpp:15