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); }
| 2883 | /// \return remainder of floating point division. |
| 2884 | // template<typename T,typename U> typename enable<expr,T,U>::type fmod(T x, U y) { return functions::fmod(x, y); } |
| 2885 | inline expr fmod(half x, half y) |
| 2886 | { |
| 2887 | return functions::fmod(x, y); |
| 2888 | } |
| 2889 | inline expr fmod(half x, expr y) |
| 2890 | { |
| 2891 | return functions::fmod(x, y); |