5 When I implement `SoftDouble`, depending on the source library I am basing
6 off if it uses `long` then I will use that for simplicity otherwise it will
7 be split via `int`. This way when I do major shifting around I do not need
8 to re-implement software `long` and instead just use it naturally as needed.
9 It will work just fine this way.