tan
| 362 | |
| 363 | // tan |
| 364 | inline float tanf(float value) FL_NOEXCEPT { return tan_impl_float(value); } |
| 365 | inline double tan(double value) FL_NOEXCEPT { return tan_impl_double(value); } |
| 366 | template<typename T> inline typename enable_if<is_integral<T>::value, float>::type |
| 367 | tan(T value) FL_NOEXCEPT { return tan_impl_float(static_cast<float>(value)); } |
no test coverage detected