Cosine function. \param arg function argument \return cosine value of \a arg template typename enable ::type cos(T arg) { return functions::cos(arg); }
| 2426 | /// \return cosine value of \a arg |
| 2427 | // template<typename T> typename enable<expr,T>::type cos(T arg) { return functions::cos(arg); } |
| 2428 | inline expr cos(half arg) { return functions::cos(arg); } |
| 2429 | inline expr cos(expr arg) { return functions::cos(arg); } |
| 2430 | |
| 2431 | /// Tangent function. |
no outgoing calls
no test coverage detected