Arc cosine function. \param arg function argument \return arc cosine value of \a arg template typename enable ::type acos(T arg) { return functions::acos(arg); }
| 2447 | /// \return arc cosine value of \a arg |
| 2448 | // template<typename T> typename enable<expr,T>::type acos(T arg) { return functions::acos(arg); } |
| 2449 | inline expr acos(half arg) { return functions::acos(arg); } |
| 2450 | inline expr acos(expr arg) { return functions::acos(arg); } |
| 2451 | |
| 2452 | /// Arc tangent function. |
no outgoing calls
no test coverage detected