The main mechanism for simplification was simply to assume that
ZeroType<T> and OneType<T> will always be in T. That removed a lot
of specialized typing, and presumably will be true in practice.
Otherwise, removes extraneous type definitions and adds/clarifies
a number of comments to hopefully make the scheme as clear as possible.
Avoids clumsy naming properties by making the names the keys in
an interface to which the signatures of all operations must be
published. This also reduces the number of different symbols and
avoids long lists of imports in the modules implementing multiple
operations, which were redundant with the list of functions
exported from such modules.
Together with any auxiliary functions needed for that goal. Also
strives to ensure the same functions are being defined for
number and for `Complex<T>`.