I am trying to perform some generic number manipulation independent of the number type. However, I know of no way to use generics to do this. The first idea was to filter th
There's no common interface for arithmetic operations implemented by numeric types. Generic operators might help solving your problem.