Once we see how useful the notion of iteration on naturals is, we can make a (very)
similar definition for iteration on integers. The same basic idea applies: we give two
parameters (z and s) which will be used to "replace" zero and successor in the construction
of an integer. With integers, however, we must overtly "deconstruct" them to see the
zero/successor structure, since it is not directly exposed in terms of constructors.
We can put this iteration on integers (here called iti
) directly to use in re-defining
the conversion function from integers to naturals. Note especially how similar the definitions
of the general iterators are, and how their use highlights the relationship between the conversions.
|
|
Nat
s)
are built as data structures, from constructors, whereas integers (as Int
s)
are supplied asbtractly by the language, in terms of available operations and features
(such as pattern-matching)
iti
) on a negative integer?