Common logorithm. \param arg function argument \return logarithm of \a arg to base 10 template typename enable ::type log10(T arg) { return functions::log10(arg); }
| 2356 | /// \return logarithm of \a arg to base 10 |
| 2357 | // template<typename T> typename enable<expr,T>::type log10(T arg) { return functions::log10(arg); } |
| 2358 | inline expr log10(half arg) { return functions::log10(arg); } |
| 2359 | inline expr log10(expr arg) { return functions::log10(arg); } |
| 2360 | |
| 2361 | /// Natural logorithm. |
no outgoing calls
no test coverage detected