Remainder of division. \param x first operand \param y second operand \return remainder of floating point division. template typename enable ::type remainder(T x, U y) { return functions::remainder(x, y); }
| 2255 | /// \return remainder of floating point division. |
| 2256 | // template<typename T,typename U> typename enable<expr,T,U>::type remainder(T x, U y) { return functions::remainder(x, y); } |
| 2257 | inline expr remainder(half x, half y) { return functions::remainder(x, y); } |
| 2258 | inline expr remainder(half x, expr y) { return functions::remainder(x, y); } |
| 2259 | inline expr remainder(expr x, half y) { return functions::remainder(x, y); } |
| 2260 | inline expr remainder(expr x, expr y) { return functions::remainder(x, y); } |
no outgoing calls
no test coverage detected