Remainder of division. \param x first operand \param y second operand \return remainder of floating point division. template typename enable ::type fmod(T x, U y) { return functions::fmod(x, y); }
| 2232 | /// \return remainder of floating point division. |
| 2233 | // template<typename T,typename U> typename enable<expr,T,U>::type fmod(T x, U y) { return functions::fmod(x, y); } |
| 2234 | inline expr fmod(half x, half y) { return functions::fmod(x, y); } |
| 2235 | inline expr fmod(half x, expr y) { return functions::fmod(x, y); } |
| 2236 | inline expr fmod(expr x, half y) { return functions::fmod(x, y); } |
| 2237 | inline expr fmod(expr x, expr y) { return functions::fmod(x, y); } |
no outgoing calls
no test coverage detected