all I am trying to implement a floating point arithmetic library and I have trouble understanding the algorithm of subtracting floats. I have implemented addition succesfull
a-b == a+(-b), and unary minus is trivial, so I wouldn't even bother with binary minus.
a-b == a+(-b)