Arc tangent function. \param x first argument \param y second argument \return arc tangent value template typename enable ::type atan2(T x, U y) { return functions::atan2(x, y); }
| 2462 | /// \return arc tangent value |
| 2463 | // template<typename T,typename U> typename enable<expr,T,U>::type atan2(T x, U y) { return functions::atan2(x, y); } |
| 2464 | inline expr atan2(half x, half y) { return functions::atan2(x, y); } |
| 2465 | inline expr atan2(half x, expr y) { return functions::atan2(x, y); } |
| 2466 | inline expr atan2(expr x, half y) { return functions::atan2(x, y); } |
| 2467 | inline expr atan2(expr x, expr y) { return functions::atan2(x, y); } |
no outgoing calls
no test coverage detected