Cosine function. \param arg function argument \return cosine value of \a arg template typename enable ::type cos(T arg) { return functions::cos(arg); }
| 2413 | /// \return cosine value of \a arg |
| 2414 | // template<typename T> typename enable<expr,T>::type cos(T arg) { return functions::cos(arg); } |
| 2415 | inline expr cos(half arg) { return functions::cos(arg); } |
| 2416 | inline expr cos(expr arg) { return functions::cos(arg); } |
| 2417 | |
| 2418 | /// Tangent function. |
no outgoing calls
no test coverage detected