Given the long-winded nature of Nat
representations in Haskell, it can be
convenient to convert from naturals to integers and back again. We can define conversion
functions using Haskell's built-in Int
type as follows. Once we have the
conversion functions, we can define "round trip" function transformers which convert
a function on integers to a function on naturals or vice versa (note that we need
separate transformers for unary and binary functions). This gives us a quick-and-dirty
way to define functions like addition on naturals, but it's not too informative.
|
Num a =>
qualifiers),
we overtly restrict the conversion functions to the Int
type
ifn
is (Int -> Int) -> Nat -> Nat
,
which can be read as "transforms a function on integers into one on naturals"
ibn
without peeking?