pub const fn sbb(a: u64, b: u64, borrow: u64) -> (u64, u64)
Computes a - (b + borrow), returning the result and the new borrow.
a - (b + borrow)