Hypotenuse function. \param x first argument \param y second argument \return square root of sum of squares without internal over- or underflows template typename enable ::type hypot(T x, U y) { return functions::hypot(x, y); }
| 2396 | /// \return square root of sum of squares without internal over- or underflows |
| 2397 | // template<typename T,typename U> typename enable<expr,T,U>::type hypot(T x, U y) { return functions::hypot(x, y); } |
| 2398 | inline expr hypot(half x, half y) { return functions::hypot(x, y); } |
| 2399 | inline expr hypot(half x, expr y) { return functions::hypot(x, y); } |
| 2400 | inline expr hypot(expr x, half y) { return functions::hypot(x, y); } |
| 2401 | inline expr hypot(expr x, expr y) { return functions::hypot(x, y); } |
no outgoing calls
no test coverage detected