Return the positive difference of the specified values (C++11).
The function is defined by
fdim(x, y) = (x > y) ? (x - y) : 0.
fdim(x, y) = (x > y) ? (x - y) : 0
Definition at line 22 of file fdim.hpp.