MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / nextafter

Function nextafter

extern/half/include/half.hpp:2688–2688  ·  view source on GitHub ↗

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); }

Source from the content-addressed store, hash-verified

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); }

Callers 1

increment_nextFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected