Tangent function. \param arg function argument \return tangent value of \a arg template typename enable ::type tan(T arg) { return functions::tan(arg); }
| 2433 | /// \return tangent value of \a arg |
| 2434 | // template<typename T> typename enable<expr,T>::type tan(T arg) { return functions::tan(arg); } |
| 2435 | inline expr tan(half arg) { return functions::tan(arg); } |
| 2436 | inline expr tan(expr arg) { return functions::tan(arg); } |
| 2437 | |
| 2438 | /// Arc sine. |
no outgoing calls
no test coverage detected