Next representable value. \param from value to compute next representable value for \param to direction towards which to compute next value \return next representable value after \a from in direction towards \a to template typename enable ::type nextafter(T from, U to) { return functions::nextafter(from, to); }
| 2686 | /// \return next representable value after \a from in direction towards \a to |
| 2687 | // template<typename T,typename U> typename enable<half,T,U>::type nextafter(T from, U to) { return functions::nextafter(from, to); } |
| 2688 | inline half nextafter(half from, half to) { return functions::nextafter(from, to); } |
| 2689 | inline half nextafter(half from, expr to) { return functions::nextafter(from, to); } |
| 2690 | inline half nextafter(expr from, half to) { return functions::nextafter(from, to); } |
| 2691 | inline half nextafter(expr from, expr to) { return functions::nextafter(from, to); } |