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

Function fmod

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

Remainder of division. \param x first operand \param y second operand \return remainder of floating point division. template typename enable ::type fmod(T x, U y) { return functions::fmod(x, y); }

Source from the content-addressed store, hash-verified

2245 /// \return remainder of floating point division.
2246// template<typename T,typename U> typename enable<expr,T,U>::type fmod(T x, U y) { return functions::fmod(x, y); }
2247 inline expr fmod(half x, half y) { return functions::fmod(x, y); }
2248 inline expr fmod(half x, expr y) { return functions::fmod(x, y); }
2249 inline expr fmod(expr x, half y) { return functions::fmod(x, y); }
2250 inline expr fmod(expr x, expr y) { return functions::fmod(x, y); }

Callers 6

fmodMethod · 0.85
remainderMethod · 0.85
remquoMethod · 0.85
tgammaMethod · 0.85
modFunction · 0.85
binary.hppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected